Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 95abd9701d | |||
| 7fcca28950 | |||
| 1c0495098f | |||
| 9ad30f296c |
@@ -3,35 +3,36 @@
|
||||
import { Coffee, Heart, Sparkles, Star } from "lucide-react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel";
|
||||
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
||||
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 HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
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="text-shift"
|
||||
defaultButtonVariant="shift-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="semibold"
|
||||
borderRadius="soft"
|
||||
contentWidth="smallMedium"
|
||||
sizing="mediumLarge"
|
||||
background="grid"
|
||||
cardStyle="glass-depth"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<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: "Testimonials", id: "#testimonials" },
|
||||
{ name: "Contact", id: "#contact" }
|
||||
]}
|
||||
brandName="CJ's Coffee"
|
||||
bottomLeftText="Zion, IL"
|
||||
@@ -131,7 +132,7 @@ export default function LandingPage() {
|
||||
{ text: "Our Story", href: "#" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</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: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "grid" }}
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -184,6 +185,7 @@ export default function LandingPage() {
|
||||
{ label: "Home", href: "#" },
|
||||
{ label: "Menu", href: "#menu" },
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user