diff --git a/src/app/link-in-bio/page.tsx b/src/app/link-in-bio/page.tsx new file mode 100644 index 0000000..34e88df --- /dev/null +++ b/src/app/link-in-bio/page.tsx @@ -0,0 +1,142 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import { Metadata } from "next"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; +import CardStack from '@/components/cardStack/CardStack'; +import ButtonIconArrow from '@/components/button/ButtonIconArrow'; +import FooterBase from '@/components/sections/footer/FooterBase'; + +export const metadata: Metadata = { + title: "Jane Doe | Link in Bio", description: "Connect with Jane Doe across her website, social media, and projects."}; + +export default function LinkInBioPage() { + return ( + + + + +
+ +
+ + + + +
+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 6f1b125..2178376 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -42,6 +42,8 @@ export default function LandingPage() { name: "Widgets", id: "#widgets"}, { name: "Contact", id: "#contact"}, + { + name: "Link in Bio", href: "/link-in-bio"} ]} brandName="CDNJS Widgets" button={{ @@ -286,4 +288,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file