mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
* feat: init * fix * fix * fix * feat * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: implement icons * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: update init command * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: dialog * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add registry:base item type * feat: rename frame to canva * fix * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fi * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add all colors * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add outfit font * fix * fix * fix * fix * fix * chore: changeset * fix * fix * fix * fix * fix * fix * fix * fix
103 lines
3.2 KiB
TypeScript
103 lines
3.2 KiB
TypeScript
import { type Metadata } from "next"
|
|
import Image from "next/image"
|
|
import Link from "next/link"
|
|
import { PlusSignIcon } from "@hugeicons/core-free-icons"
|
|
import { HugeiconsIcon } from "@hugeicons/react"
|
|
|
|
import { Announcement } from "@/components/announcement"
|
|
import { ExamplesNav } from "@/components/examples-nav"
|
|
import {
|
|
PageActions,
|
|
PageHeader,
|
|
PageHeaderDescription,
|
|
PageHeaderHeading,
|
|
} from "@/components/page-header"
|
|
import { PageNav } from "@/components/page-nav"
|
|
import { ThemeSelector } from "@/components/theme-selector"
|
|
import { Button } from "@/registry/new-york-v4/ui/button"
|
|
|
|
import { RootComponents } from "./components"
|
|
|
|
const title = "The Foundation for your Design System"
|
|
const description =
|
|
"A set of beautifully designed components that you can customize, extend, and build on. Start here then make it your own. Open Source. Open Code."
|
|
|
|
export const dynamic = "force-static"
|
|
export const revalidate = false
|
|
|
|
export const metadata: Metadata = {
|
|
title,
|
|
description,
|
|
openGraph: {
|
|
images: [
|
|
{
|
|
url: `/og?title=${encodeURIComponent(
|
|
title
|
|
)}&description=${encodeURIComponent(description)}`,
|
|
},
|
|
],
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
images: [
|
|
{
|
|
url: `/og?title=${encodeURIComponent(
|
|
title
|
|
)}&description=${encodeURIComponent(description)}`,
|
|
},
|
|
],
|
|
},
|
|
}
|
|
|
|
export default function IndexPage() {
|
|
return (
|
|
<div className="flex flex-1 flex-col">
|
|
<PageHeader>
|
|
<Announcement />
|
|
<PageHeaderHeading className="max-w-4xl">{title}</PageHeaderHeading>
|
|
<PageHeaderDescription>{description}</PageHeaderDescription>
|
|
<PageActions>
|
|
<Button asChild size="sm" className="h-[31px] rounded-lg">
|
|
<Link href="/create">
|
|
<HugeiconsIcon icon={PlusSignIcon} />
|
|
New Project
|
|
</Link>
|
|
</Button>
|
|
<Button asChild size="sm" variant="ghost" className="rounded-lg">
|
|
<Link href="/docs/components">View Components</Link>
|
|
</Button>
|
|
</PageActions>
|
|
</PageHeader>
|
|
<PageNav className="hidden md:flex">
|
|
<ExamplesNav className="[&>a:first-child]:text-primary flex-1 overflow-hidden" />
|
|
<ThemeSelector className="mr-4 hidden md:flex" />
|
|
</PageNav>
|
|
<div className="container-wrapper section-soft flex-1 pb-6">
|
|
<div className="container overflow-hidden">
|
|
<section className="border-border/50 -mx-4 w-[160vw] overflow-hidden rounded-lg border md:hidden md:w-[150vw]">
|
|
<Image
|
|
src="/r/styles/new-york-v4/dashboard-01-light.png"
|
|
width={1400}
|
|
height={875}
|
|
alt="Dashboard"
|
|
className="block dark:hidden"
|
|
priority
|
|
/>
|
|
<Image
|
|
src="/r/styles/new-york-v4/dashboard-01-dark.png"
|
|
width={1400}
|
|
height={875}
|
|
alt="Dashboard"
|
|
className="hidden dark:block"
|
|
priority
|
|
/>
|
|
</section>
|
|
<section className="theme-container hidden md:block">
|
|
<RootComponents />
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|