diff --git a/app/(marketing)/page.tsx b/app/(marketing)/page.tsx index 3a2686e..68ed35c 100644 --- a/app/(marketing)/page.tsx +++ b/app/(marketing)/page.tsx @@ -57,9 +57,9 @@ export default async function Home() {
- + - Introducing RetroUI Themes! + New Calendar & Carousel components! diff --git a/app/(marketing)/showcase/page.tsx b/app/(marketing)/showcase/page.tsx new file mode 100644 index 0000000..daac2e7 --- /dev/null +++ b/app/(marketing)/showcase/page.tsx @@ -0,0 +1,52 @@ +import showcaseData from "@/showcase.json"; +import { Card, Text, Button } from "@/components/retroui"; +import Image from "next/image"; +import Link from "next/link"; +import { ArrowUpRight } from "lucide-react"; + +export default function ShowcasePage() { + return ( +
+
+ + Showcase + + + Build something cool using RetroUI? Share it with the community. + + +
+ +
    + {Object.entries(showcaseData).map(([key, value]) => ( +
  • + + + {value.name} +
    + {value.name} + + +
    +
    +
    +
  • + ))} +
+
+ ); +} \ No newline at end of file diff --git a/components/TopNav.tsx b/components/TopNav.tsx index 58c63a6..958cf77 100644 --- a/components/TopNav.tsx +++ b/components/TopNav.tsx @@ -49,7 +49,7 @@ export default function TopNav() {
{/* Navigation Links */} -
+
{navConfig.topNavItems.map((item) => (