- Add scroll-behavior: smooth and scroll-margin-top to globals.css - Create SiteNav with sticky navy bar, desktop links, mobile hamburger - Create HeroSection with split-panel layout and next/image - Create ListingsPlaceholder with brand navy background and gold CTA - Create SiteFooter with license number and TODO verify comment - Update page.tsx to compose all section components - Install lucide-react for icons [Rule 1 - Bug] Fixed event handlers in server components — used CSS hover classes instead
35 lines
569 B
CSS
35 lines
569 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background: #ffffff;
|
|
--foreground: #171717;
|
|
}
|
|
|
|
@theme inline {
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
--font-sans: var(--font-geist-sans);
|
|
--font-mono: var(--font-geist-mono);
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--background: #0a0a0a;
|
|
--foreground: #ededed;
|
|
}
|
|
}
|
|
|
|
body {
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
section[id] {
|
|
scroll-margin-top: 72px;
|
|
}
|