diff --git a/src/app/[orgId]/components/Header.tsx b/src/app/[orgId]/components/Header.tsx index cc6b055..50c850c 100644 --- a/src/app/[orgId]/components/Header.tsx +++ b/src/app/[orgId]/components/Header.tsx @@ -1,7 +1,6 @@ "use client"; import { Avatar, AvatarFallback } from "@app/components/ui/avatar"; -import { Badge } from "@app/components/ui/badge"; import { Button } from "@app/components/ui/button"; import { DropdownMenu, @@ -12,7 +11,14 @@ import { DropdownMenuSeparator, DropdownMenuTrigger, } from "@app/components/ui/dropdown-menu"; -import { Separator } from "@app/components/ui/separator"; +import { + Select, + SelectContent, + SelectGroup, + SelectItem, + SelectTrigger, + SelectValue, +} from "@app/components/ui/select"; import Link from "next/link"; type HeaderProps = { @@ -33,41 +39,14 @@ export default function Header({ email, orgName, name }: HeaderProps) { return ( <>
diff --git a/src/app/[orgId]/sites/[siteId]/layout.tsx b/src/app/[orgId]/sites/[siteId]/layout.tsx index 0297537..189fb5d 100644 --- a/src/app/[orgId]/sites/[siteId]/layout.tsx +++ b/src/app/[orgId]/sites/[siteId]/layout.tsx @@ -55,7 +55,7 @@ export default async function SettingsLayout({ children, params }: SettingsLayou return null; } } - + return ( <>
diff --git a/src/app/globals.css b/src/app/globals.css index 7aa5661..e8e65eb 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4,48 +4,48 @@ @layer base { :root { - --background: 37 0% 95%; - --foreground: 37 0% 10%; - --card: 37 0% 90%; - --card-foreground: 37 0% 15%; - --popover: 37 0% 95%; - --popover-foreground: 37 95% 10%; - --primary: 37 31% 25%; + --background: 231 0% 100%; + --foreground: 231 0% 10%; + --card: 231 0% 100%; + --card-foreground: 231 0% 15%; + --popover: 231 0% 100%; + --popover-foreground: 231 95% 10%; + --primary: 231 34% 49%; --primary-foreground: 0 0% 100%; - --secondary: 37 10% 74%; + --secondary: 231 10% 90%; --secondary-foreground: 0 0% 0%; - --muted: -1 10% 85%; - --muted-foreground: 37 0% 40%; - --accent: -1 10% 80%; - --accent-foreground: 37 0% 15%; + --muted: 193 10% 95%; + --muted-foreground: 231 0% 40%; + --accent: 193 10% 90%; + --accent-foreground: 231 0% 15%; --destructive: 0 50% 50%; - --destructive-foreground: 37 0% 90%; - --border: 37 20% 74%; - --input: 37 20% 50%; - --ring: 37 31% 25%; - --radius: 0.5rem; + --destructive-foreground: 231 0% 100%; + --border: 231 20% 82%; + --input: 231 20% 50%; + --ring: 231 34% 49%; + --radius: 0.75rem; } .dark { - --background: 37 10% 10%; - --foreground: 37 0% 90%; - --card: 37 0% 10%; - --card-foreground: 37 0% 90%; - --popover: 37 10% 5%; - --popover-foreground: 37 0% 90%; - --primary: 37 31% 25%; + --background: 231 10% 10%; + --foreground: 231 0% 100%; + --card: 231 0% 10%; + --card-foreground: 231 0% 100%; + --popover: 231 10% 5%; + --popover-foreground: 231 0% 100%; + --primary: 231 34% 49%; --primary-foreground: 0 0% 100%; - --secondary: 37 10% 20%; + --secondary: 231 10% 20%; --secondary-foreground: 0 0% 100%; - --muted: -1 10% 25%; - --muted-foreground: 37 0% 65%; - --accent: -1 10% 25%; - --accent-foreground: 37 0% 90%; + --muted: 193 10% 25%; + --muted-foreground: 231 0% 65%; + --accent: 193 10% 25%; + --accent-foreground: 231 0% 95%; --destructive: 0 50% 50%; - --destructive-foreground: 37 0% 90%; - --border: 37 20% 50%; - --input: 37 20% 50%; - --ring: 37 31% 25%; - --radius: 0.5rem; + --destructive-foreground: 231 0% 100%; + --border: 231 20% 50%; + --input: 231 20% 50%; + --ring: 231 34% 49%; + --radius: 0.75rem; } } diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 74ca7b0..0537dc6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,14 +1,14 @@ import type { Metadata } from "next"; import "./globals.css"; -import { Roboto } from "next/font/google"; -import { Toaster } from "@/components/ui/toaster" +import { Inter, Roboto } from "next/font/google"; +import { Toaster } from "@/components/ui/toaster"; export const metadata: Metadata = { title: process.env.NEXT_PUBLIC_APP_NAME, description: "", }; -const font = Roboto({ subsets: ["latin"], style: "normal", weight: "400" }); +const font = Inter({ subsets: ["latin"] }); export default async function RootLayout({ children, @@ -17,7 +17,7 @@ export default async function RootLayout({ }>) { return ( -
+