import type { Route } from "next";
import { Component, CreditCard, Globe } from "lucide-react";
import * as Icons from "@acme/ui/icons";
export const siteConfig = {
name: "Acme Corp",
description:
"Next.js starter kit that includes everything you need to build a modern web application. Mobile application preconfigured, ready to go.",
github: "https://github.com/juliusmarminge/acme-corp",
twitter: "https://twitter.com/jullerino",
};
export const navItems = [
{
href: "/dashboard",
title: "Overview",
},
{
href: "/pricing",
title: "Pricing",
},
{
href: "/dashboard",
title: "Products",
},
{
href: "/dashboard",
title: "Settings",
},
] satisfies { href: Route; title: string }[];
export const marketingFeatures = [
{
icon: ,
title: "UI Package",
body: (
<>
A UI package with all the components you need for your next application.
Built by the wonderful{" "}
Shadcn
.
>
),
},
{
icon: ,
title: "Authentication",
body: (
<>
Protect pages and API routes throughout your entire app using{" "}
Clerk
.
>
),
},
{
icon: ,
title: "MDX",
body: (
<>
Preconfigured MDX as Server Components. MDX is the best way to write
contentful pages.
>
),
},
{
icon: (
),
title: "Next.js 13 & React 18",
body: (
<>
Latest features from Next 13 using the brand new App Router with full
React 18 support including streaming.
>
),
},
{
icon: (
),
title: "Full-stack Typesafety",
body: (
<>
Full-stack Typesafety with{" "}
tRPC
. Typesafe database querying using{" "}
Kysely
{" "}
and{" "}
Prisma
.
>
),
},
{
icon: ,
title: "Edge Compute",
body: (
<>
Ready to deploy on Edge functions to ensure a blazingly fast application
with optimal UX.
>
),
},
{
icon: ,
title: "Payments",
body: (
<>
Accept payments with{" "}
Stripe
.
>
),
},
];