diff --git a/src/app/page.tsx b/src/app/page.tsx index f40607d..e843eac 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,3 +1,4 @@ +import { CertDemo } from "@/components/cert-demo"; import { EventButtons } from "@/components/event-buttons"; import AnimatedShinyText from "@/components/magicui/animated-shiny-text"; import RetroGrid from "@/components/magicui/retro-grid"; @@ -7,7 +8,7 @@ import Link from "next/link"; export default async function Home() { return ( -
+
+
); diff --git a/src/components/cert-demo.tsx b/src/components/cert-demo.tsx new file mode 100644 index 0000000..0e47ac8 --- /dev/null +++ b/src/components/cert-demo.tsx @@ -0,0 +1,40 @@ +import * as React from "react"; +import { + Card, + CardContent, + CardFooter, + CardHeader, +} from "@/components/ui/card"; +import AnimatedShinyText from "@/components/magicui/animated-shiny-text"; + +export function CertDemo() { + return ( + + + + Certificate of Recognition + + +
+

+ Developer of the Year +

+

+ is hereby presented to +

+
+
+ +

+ John Doe Omsimos +

+
+ +

+ Lorem ipsum dolor sit amet consectetur adipisicing elit. Officiis + iste, repellat ad odit fugit quod soluta commodi quibusdam nemo +

+
+
+ ); +}