18 Commits

Author SHA1 Message Date
04297c8729 Merge version_3 into main
Merge version_3 into main
2026-03-10 17:47:42 +00:00
95abd9701d Update src/app/page.tsx 2026-03-10 17:47:32 +00:00
37b88289f8 Merge version_2 into main
Merge version_2 into main
2026-03-10 17:46:59 +00:00
02f2cc6398 Update src/app/page.tsx 2026-03-10 17:46:56 +00:00
3f503cdcdb Update src/app/styles/variables.css 2026-03-10 17:33:46 +00:00
5d81741403 Update src/app/page.tsx 2026-03-10 17:33:46 +00:00
90b3c12682 Update src/app/styles/variables.css 2026-03-10 17:32:12 +00:00
d514676099 Update src/app/page.tsx 2026-03-10 17:32:12 +00:00
a12e3caa06 Switch to version 1: modified src/app/styles/variables.css 2026-03-10 17:31:33 +00:00
904157c095 Switch to version 1: modified src/app/page.tsx 2026-03-10 17:31:33 +00:00
4581b7a836 Merge version_3 into main
Merge version_3 into main
2026-03-10 17:30:06 +00:00
7fcca28950 Update src/app/page.tsx 2026-03-10 17:29:56 +00:00
e59c35839b Merge version_3 into main
Merge version_3 into main
2026-03-10 17:21:08 +00:00
1c0495098f Update src/app/page.tsx 2026-03-10 17:21:01 +00:00
9ad30f296c Merge version_2 into main
Merge version_2 into main
2026-03-10 17:09:29 +00:00
37e99371f6 Update src/app/styles/variables.css 2026-03-10 17:09:24 +00:00
70872aed40 Update src/app/page.tsx 2026-03-10 17:09:22 +00:00
3d62afef7c Merge version_1 into main
Merge version_1 into main
2026-03-10 16:41:06 +00:00
2 changed files with 28 additions and 27 deletions

View File

@@ -9,29 +9,30 @@ import MediaAbout from "@/components/sections/about/MediaAbout";
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
import ContactText from "@/components/sections/contact/ContactText";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import Link from "next/link";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="smallMedium"
sizing="mediumLarge"
background="grid"
cardStyle="glass-depth"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="normal"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="medium"
background="none"
cardStyle="solid"
primaryButtonStyle="shadow"
secondaryButtonStyle="solid"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "home" },
{ name: "Menu", id: "menu" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Order Now", id: "order" }
{ name: "Home", id: "/" },
{ name: "Menu", id: "#menu" },
{ name: "About", id: "#about" },
{ name: "Contact", id: "#contact" },
{ name: "Order Now", id: "#contact" }
]}
brandName="CJ's Coffee"
bottomLeftText="Zion, IL"
@@ -75,8 +76,8 @@ export default function LandingPage() {
autoPlay={true}
autoPlayInterval={5000}
className="w-full"
titleClassName="text-4xl md:text-5xl font-bold"
descriptionClassName="text-base md:text-lg"
titleClassName="text-4xl md:text-5xl font-semibold"
descriptionClassName="text-base md:text-lg text-opacity-90"
buttonClassName="px-6 py-3"
/>
</div>
@@ -142,6 +143,8 @@ export default function LandingPage() {
tag="Customer Reviews"
tagIcon={Star}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "1", name: "Gary G., Burlington, WI", date: "Date: January 27, 2025", title: "One of the top five donut shops!", quote: "Stopped here to get a couple dozen of these gems for work staff. In my opinion, one of the top five doughnut shops in southeastern Wisconsin. Puts Dunkin and Krispy Kreme to shame! I could never eat another establishment's doughnut again. You can tell they are handmade.", tag: "Premium Quality", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3i3bhi", avatarAlt: "Gary G.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3i3bhi", imageAlt: "happy customer coffee shop enjoying beverage"
@@ -156,8 +159,6 @@ export default function LandingPage() {
id: "4", name: "Alex B., Easley, SC", date: "Date: December 31, 2023", title: "Best donuts I've had, better get there early!", quote: "Best donuts I've had. You have to get them early. They will run out. I bought Crew breakfast there for 2 years. The only complaint was weight gain. YUMMY! Coffee was good also.", tag: "Most Popular", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=vmgd7c", avatarAlt: "Alex B.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=vmgd7c", imageAlt: "person portrait coffee shop aesthetic lighting"
}
]}
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "See All Reviews", href: "#" }]}
buttonAnimation="slide-up"
/>
@@ -171,8 +172,8 @@ export default function LandingPage() {
{ text: "Call Us", href: "tel:(847)731-2208" },
{ text: "Get Directions", href: "https://maps.google.com/?q=2352+Sheridan+Rd+Zion+IL+60099" }
]}
background={{ variant: "grid" }}
useInvertedBackground={true}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
@@ -208,4 +209,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f5f5f5;
--background: #faf8f6;
--card: #ffffff;
--foreground: #1c1c1c;
--primary-cta: #341f51;
--foreground: #3d2817;
--primary-cta: #8b5a3c;
--primary-cta-text: #f5f5f5;
--secondary-cta: #ffffff;
--secondary-cta: #f5f1e8;
--secondary-cta-text: #1c1c1c;
--accent: #6139e6;
--background-accent: #b3a8e8;
--accent: #d4a574;
--background-accent: #e8dcc8;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);