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 ( -{demoCard.name}
++ {demoCard.url} +
+ +app/page.tsx
-
-