aboutsummaryrefslogtreecommitdiffstats
path: root/web/app/bookmarks
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--web/app/dashboard/bookmarks/components/AddLink.tsx (renamed from web/app/bookmarks/components/AddLink.tsx)0
-rw-r--r--web/app/dashboard/bookmarks/components/LinkCard.tsx (renamed from web/app/bookmarks/components/LinkCard.tsx)0
-rw-r--r--web/app/dashboard/bookmarks/components/LinksGrid.tsx (renamed from web/app/bookmarks/components/LinksGrid.tsx)2
-rw-r--r--web/app/dashboard/bookmarks/page.tsx (renamed from web/app/bookmarks/page.tsx)12
4 files changed, 9 insertions, 5 deletions
diff --git a/web/app/bookmarks/components/AddLink.tsx b/web/app/dashboard/bookmarks/components/AddLink.tsx
index fab4db8b..fab4db8b 100644
--- a/web/app/bookmarks/components/AddLink.tsx
+++ b/web/app/dashboard/bookmarks/components/AddLink.tsx
diff --git a/web/app/bookmarks/components/LinkCard.tsx b/web/app/dashboard/bookmarks/components/LinkCard.tsx
index da59d9da..da59d9da 100644
--- a/web/app/bookmarks/components/LinkCard.tsx
+++ b/web/app/dashboard/bookmarks/components/LinkCard.tsx
diff --git a/web/app/bookmarks/components/LinksGrid.tsx b/web/app/dashboard/bookmarks/components/LinksGrid.tsx
index 4b82df98..66f0d766 100644
--- a/web/app/bookmarks/components/LinksGrid.tsx
+++ b/web/app/dashboard/bookmarks/components/LinksGrid.tsx
@@ -12,7 +12,7 @@ export default async function LinksGrid() {
const links = await getLinks(session.user.id);
return (
- <div className="container p-8 mx-auto grid gap-4 grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4">
+ <div className="container grid gap-4 grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4">
{links.map((l) => (
<LinkCard key={l.id} link={l} />
))}
diff --git a/web/app/bookmarks/page.tsx b/web/app/dashboard/bookmarks/page.tsx
index 89a26122..b4158893 100644
--- a/web/app/bookmarks/page.tsx
+++ b/web/app/dashboard/bookmarks/page.tsx
@@ -8,9 +8,13 @@ export const metadata: Metadata = {
export default async function Bookmarks() {
return (
- <>
- <AddLink />
- <LinksGrid />
- </>
+ <div className="flex flex-col">
+ <div>
+ <AddLink />
+ </div>
+ <div>
+ <LinksGrid />
+ </div>
+ </div>
);
}