From 04a8826c04a6432e293009d236b8eeedde038e19 Mon Sep 17 00:00:00 2001 From: Kalidou Diagne Date: Wed, 5 Mar 2025 17:07:13 +0100 Subject: [PATCH 1/2] feat: fe progress --- apps/client/src/sections/App/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/client/src/sections/App/index.tsx b/apps/client/src/sections/App/index.tsx index e6a665a..2c116dc 100644 --- a/apps/client/src/sections/App/index.tsx +++ b/apps/client/src/sections/App/index.tsx @@ -1,11 +1,11 @@ import { PageContent } from "@/components/PageContent"; -import { Link, PlusIcon } from "lucide-react"; +import { PlusIcon } from "lucide-react"; import { postMocks } from "mocks/postMocks"; import { Badge } from "@/components/ui/Badge"; import { Button } from "@/components/ui/Button"; import { PostAuthor } from "@/sections/Post/PostAuthor"; import { PostCard } from "@/sections/Post/PostCard"; - +import { Link } from "@tanstack/react-router"; export const HomePage = () => { return ( From d04c93b70d2b878939299929c3129da40722c314 Mon Sep 17 00:00:00 2001 From: Kalidou Diagne Date: Wed, 5 Mar 2025 17:09:29 +0100 Subject: [PATCH 2/2] import correct components --- apps/client/src/sections/App/index.tsx | 1 + apps/client/src/sections/Communities/CommunityPage.tsx | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/client/src/sections/App/index.tsx b/apps/client/src/sections/App/index.tsx index 2c116dc..62dc4d5 100644 --- a/apps/client/src/sections/App/index.tsx +++ b/apps/client/src/sections/App/index.tsx @@ -6,6 +6,7 @@ import { Button } from "@/components/ui/Button"; import { PostAuthor } from "@/sections/Post/PostAuthor"; import { PostCard } from "@/sections/Post/PostCard"; import { Link } from "@tanstack/react-router"; + export const HomePage = () => { return ( diff --git a/apps/client/src/sections/Communities/CommunityPage.tsx b/apps/client/src/sections/Communities/CommunityPage.tsx index 7a746a2..bc9814d 100644 --- a/apps/client/src/sections/Communities/CommunityPage.tsx +++ b/apps/client/src/sections/Communities/CommunityPage.tsx @@ -1,13 +1,14 @@ import { PageContent } from "@/components/PageContent"; import { Button } from "@/components/ui/Button"; -import { Avatar } from "@radix-ui/react-avatar"; import { useParams } from "@tanstack/react-router"; -import { UserPlusIcon, PlusIcon, Badge } from "lucide-react"; +import { UserPlusIcon, PlusIcon } from "lucide-react"; import { membershipMocks } from "mocks/membershipMocks"; import { postMocks } from "mocks/postMocks"; import { PostAuthor } from "../Post/PostAuthor"; import { PostCard } from "../Post/PostCard"; import { Tabs } from "@/components/ui/Tabs"; +import { Badge } from "@/components/ui/Badge"; +import { Avatar } from "@/components/Avatar"; export const CommunityPage = () => { const communityParams = useParams({ from: "/_left-sidebar/communities/$id" });