diff --git a/app/layout.tsx b/app/layout.tsx index a3458e8..36292be 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -50,12 +50,12 @@ export default function RootLayout({ - Powered by + Made by -

Linode

+

TZGyn

diff --git a/app/page.tsx b/app/page.tsx index bb3b2ab..63c7ec5 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,54 +1,77 @@ -import NextLink from "next/link"; -import { Link } from "@nextui-org/link"; -import { Snippet } from "@nextui-org/snippet"; -import { Code } from "@nextui-org/code" -import { button as buttonStyles } from "@nextui-org/theme"; -import { siteConfig } from "@/config/site"; -import { title, subtitle } from "@/components/primitives"; -import { GithubIcon } from "@/components/icons"; +import NextLink from 'next/link' +import { Link } from '@nextui-org/link' +import { button as buttonStyles } from '@nextui-org/theme' +import { siteConfig } from '@/config/site' +import { title, subtitle } from '@/components/primitives' +import { GithubIcon } from '@/components/icons' +import { Card, CardHeader } from '@nextui-org/card' +import { Image } from '@nextui-org/image' export default function Home() { + const demoCard = { + name: 'Dashboard', + url: 'https://next-dashboard.tzgyn.com', + } + return ( -
-
-

Make 

-

beautiful 

+
+
+

Beautiful 

+

Dashboard 


-

- websites regardless of your design experience. -

-

- Beautiful, fast and modern React UI library. +

To Manage Your Bookmarks

+

+ Beautiful, fast and modern bookmark site.

-
+
+ + + nextui logo + +

{demoCard.name}

+

+ {demoCard.url} +

+ +
+
+
+ +
- Documentation + href='/dashboard' + className={buttonStyles({ + color: 'primary', + radius: 'full', + variant: 'shadow', + })}> + Dashboard + className={buttonStyles({ + variant: 'bordered', + radius: 'full', + })} + href={siteConfig.links.github}> GitHub
- -
- - - Get started by editing app/page.tsx - - -
- ); + ) } diff --git a/config/site.ts b/config/site.ts index e8dce7e..bed3712 100644 --- a/config/site.ts +++ b/config/site.ts @@ -2,67 +2,22 @@ export type SiteConfig = typeof siteConfig export const siteConfig = { name: 'Dashboard', - description: - 'Make beautiful websites regardless of your design experience.', + description: 'Dashboard to manage your bookmarks', navItems: [ { label: 'Home', href: '/', }, - // { - // label: 'Docs', - // href: '/docs', - // }, - // { - // label: 'Pricing', - // href: '/pricing', - // }, - // { - // label: 'Blog', - // href: '/blog', - // }, - // { - // label: 'About', - // href: '/about', - // }, { label: 'Dashboard', href: '/dashboard', }, ], navMenuItems: [ - { - label: 'Profile', - href: '/profile', - }, { label: 'Dashboard', href: '/dashboard', }, - { - label: 'Projects', - href: '/projects', - }, - { - label: 'Team', - href: '/team', - }, - { - label: 'Calendar', - href: '/calendar', - }, - { - label: 'Settings', - href: '/settings', - }, - { - label: 'Help & Feedback', - href: '/help-feedback', - }, - { - label: 'Logout', - href: '/logout', - }, ], links: { github: 'https://github.com/TZGyn/', @@ -71,4 +26,4 @@ export const siteConfig = { discord: 'https://discord.gg/9b6yyZKmH4', sponsor: 'https://patreon.com/jrgarciadev', }, -} +} as const