6 Commits

Author SHA1 Message Date
451c1af105 Update src/app/layout.tsx 2025-12-19 22:51:35 +00:00
8a4acfa136 Update src/app/globals.css 2025-12-19 22:51:35 +00:00
954d406124 Update src/app/page.tsx 2025-12-19 22:49:07 +00:00
bba325f4ef Update src/app/layout.tsx 2025-12-19 22:49:06 +00:00
8d63e7a3d2 Update src/app/globals.css 2025-12-19 22:49:06 +00:00
0f79cf10e1 Update src/app/page.tsx 2025-12-19 22:44:02 +00:00
3 changed files with 88 additions and 23 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #1a0d1d; --background: #faf5f2;
--card: #2a1a35; --card: #f5ede8;
--foreground: #f0e6ff; --foreground: #3d2417;
--primary-cta: #b366ff; --primary-cta: #d4704c;
--secondary-cta: #1a0d1d; --secondary-cta: #ffffff;
--accent: #b58cff; --accent: #f5d4c8;
--background-accent: #6b28d9; --background-accent: #d9a18f;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
@@ -495,7 +495,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-inter-tight), sans-serif; font-family: var(--font-inter), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-inter-tight), sans-serif; font-family: var(--font-inter), sans-serif;
} }

View File

@@ -1,11 +1,11 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Fraunces } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const fraunces = Fraunces({ const inter = Inter({
variable: "--font-fraunces", variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -48,7 +48,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={fraunces.variable} className={inter.variable}
> >
<Tag /> <Tag />
{children} {children}

View File

@@ -9,20 +9,22 @@ import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCar
import SocialProofThree from '@/components/sections/socialProof/SocialProofThree'; import SocialProofThree from '@/components/sections/socialProof/SocialProofThree';
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import { Zap, Heart, Smile, Sun } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="hover-magnetic" defaultButtonVariant="bounce-effect"
defaultTextAnimation="background-highlight" defaultTextAnimation="entrance-slide"
borderRadius="pill" borderRadius="rounded"
contentWidth="small" contentWidth="medium"
sizing="small" sizing="medium"
background="dotGrid" background="floatingGradient"
cardStyle="elevated-accent" cardStyle="gradient-mesh"
primaryButtonStyle="gradient" primaryButtonStyle="neon-glow-border"
secondaryButtonStyle="layered" secondaryButtonStyle="minimal"
headingFontWeight="extrabold" headingFontWeight="bold"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleFullscreen <NavbarStyleFullscreen
@@ -102,6 +104,69 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="competitors" data-section="competitors">
<PricingCardFive
title="How We Compare"
description="See why Brew Haven stands out from the competition. We deliver superior quality, service, and value."
tag="Our Advantage"
tagIcon={Zap}
animationType="slide-up"
variant="card"
textboxLayout="default"
useInvertedBackground="noInvert"
plans={[
{
id: "competitor-1",
tag: "Standard Coffee Shop",
price: "$3-4",
period: "/cup",
description: "Mass-produced, pre-roasted beans with inconsistent quality and limited selections.",
button: { text: "Learn More", href: "#" },
featuresTitle: "What You Get:",
features: [
"Pre-roasted beans",
"Limited drink options",
"Standard service",
"Basic pastries"
]
},
{
id: "competitor-2",
tag: "Corporate Chain",
price: "$5-7",
period: "/cup",
description: "Branded experience with standardized recipes and high-volume production prioritizing speed over quality.",
button: { text: "Learn More", href: "#" },
featuresTitle: "What You Get:",
features: [
"Standardized recipes",
"Quick service",
"Branded atmosphere",
"Commercial pastries"
]
},
{
id: "brew-haven",
tag: "Brew Haven",
tagIcon: Zap,
price: "$4.50-5.75",
period: "/cup",
description: "Specialty-roasted fresh daily with personalized service and artisanal craftsmanship in every cup.",
button: { text: "Visit Us Today", href: "contact" },
featuresTitle: "What You Get:",
features: [
"Fresh daily roasting",
"Single-origin selections",
"Personalized service",
"Handcrafted pastries",
"Knowledgeable baristas",
"Community focus"
]
}
]}
/>
</div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardTen <TestimonialCardTen
title="What Our Customers Say" title="What Our Customers Say"