7 Commits

Author SHA1 Message Date
8308bb4b60 Update src/app/page.tsx 2026-03-02 20:37:44 +00:00
844aa2b1da Update src/app/page.tsx 2026-03-02 20:32:22 +00:00
70193c2183 Merge version_2 into main
Merge version_2 into main
2026-03-02 20:25:07 +00:00
0e21b3f657 Update src/app/styles/variables.css 2026-03-02 20:25:02 +00:00
9332f02e0a Update src/app/page.tsx 2026-03-02 20:25:02 +00:00
7d57aa3892 Update src/app/layout.tsx 2026-03-02 20:25:01 +00:00
07f2324feb Merge version_1 into main
Merge version_1 into main
2026-03-02 20:00:08 +00:00
3 changed files with 41 additions and 34 deletions

View File

@@ -1,18 +1,12 @@
import type { Metadata } from "next";
import { Archivo } from "next/font/google";
import { Halant } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({
@@ -42,7 +36,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${archivo.variable} ${halant.variable} ${inter.variable} antialiased`}
className={`${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}

View File

@@ -7,22 +7,22 @@ import AboutMetric from "@/components/sections/about/AboutMetric";
import FeatureCardSix from "@/components/sections/feature/FeatureCardSix";
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterCard from "@/components/sections/footer/FooterCard";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { Gauge, Warehouse, Zap, Trophy } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="compact"
sizing="medium"
background="floatingGradient"
cardStyle="solid"
primaryButtonStyle="double-inset"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="largeSmallSizeLargeTitles"
background="aurora"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
@@ -160,10 +160,23 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterCard
<FooterLogoEmphasis
logoText="Martin Auto Museum"
copyrightText="© 2025 Martin Auto Museum & Event Center. All rights reserved. | 4320 W Thunderbird Rd, Glendale, AZ 85306"
socialLinks={[]}
columns={[
{
items: [
{ label: "Visit", href: "#visit" },
{ label: "Events", href: "#events" },
{ label: "Collection", href: "#collection" }
]
},
{
items: [
{ label: "About", href: "#highlights" },
{ label: "Contact", href: "#contact" }
]
}
]}
/>
</div>
</ThemeProvider>

View File

@@ -3,22 +3,22 @@
/* --vw is set by ThemeProvider */
/* --background: #ffffff;;
--card: #f9f9f9;;
--foreground: #000612e6;;
--primary-cta: #106EFB;;
--secondary-cta: #f9f9f9;;
--accent: #e2e2e2;;
--background-accent: #106EFB;; */
--card: #f1f8ff;;
--foreground: #001122;;
--primary-cta: #15479c;;
--secondary-cta: #ffffff;;
--accent: #a8cce8;;
--background-accent: #7ba3cf;; */
--background: #ffffff;;
--card: #f9f9f9;;
--foreground: #000612e6;;
--primary-cta: #106EFB;;
--card: #f1f8ff;;
--foreground: #001122;;
--primary-cta: #15479c;;
--primary-cta-text: #ffffff;;
--secondary-cta: #f9f9f9;;
--secondary-cta: #ffffff;;
--secondary-cta-text: #000612e6;;
--accent: #e2e2e2;;
--background-accent: #106EFB;;
--accent: #a8cce8;;
--background-accent: #7ba3cf;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);