Add landing page with shadcn/ui and dark mode

This commit is contained in:
Aiden Smith
2026-02-24 09:28:08 -05:00
parent a17325c39d
commit 85d1083bae
21 changed files with 1250 additions and 86 deletions

View File

@@ -0,0 +1,11 @@
"use client";
import * as React from "react";
import { ThemeProvider as NextThemesProvider } from "next-themes";
export function ThemeProvider({
children,
...props
}: React.ComponentProps<typeof NextThemesProvider>) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
}