Merge version_3 into main #7
@@ -3,47 +3,35 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import { Cake, Users, Award } from "lucide-react";
|
||||
|
||||
const navLinks = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay navItems={navLinks} brandName="Sheescakes'N More" />
|
||||
<div id="about" data-section="about" className="pt-20">
|
||||
<SplitAbout
|
||||
title="Our Bakery Story"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
description="Born and raised in Northern Cambria, our bakery started as a dream to bring authentic, homemade sweetness to our local community. We use time-honored techniques and the finest ingredients to craft cheesecakes, cupcakes, and pastries that feel like home."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-smiling-baker-holding-mould-stack-tray_1170-2040.jpg"
|
||||
bulletPoints={[
|
||||
{ title: "Handcrafted Quality", description: "Every treat is made from scratch." },
|
||||
{ title: "Local Roots", description: "Proudly serving Northern Cambria since 2024." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<AboutMetric
|
||||
title="Our Bakery Story"
|
||||
metrics={[
|
||||
{ icon: Cake, label: "Treats Baked", value: "5000+" },
|
||||
{ icon: Users, label: "Happy Customers", value: "2000+" },
|
||||
{ icon: Award, label: "Years of Passion", value: "10+" }
|
||||
]}
|
||||
metricsAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<FooterBaseReveal
|
||||
logoText="Sheescakes'N More"
|
||||
columns={[{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }]}
|
||||
columns={[{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
|
||||
@@ -3,44 +3,31 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
|
||||
const navLinks = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Order", id: "/order" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay navItems={navLinks} brandName="Sheescakes'N More" />
|
||||
<div id="contact" data-section="contact" className="pt-20">
|
||||
<ContactCTA
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
tag="Visit Us"
|
||||
title="Contact Sheescakes'N More"
|
||||
description="We're located right in the heart of Northern Cambria, Pennsylvania. Stop by for a fresh treat or reach out to place a custom order!"
|
||||
buttons={[{ text: "Call Us Now", href: "tel:+18140000000" }]}
|
||||
/>
|
||||
</div>
|
||||
<ContactSplitForm
|
||||
title="Get in Touch"
|
||||
description="Have questions or want to place a custom order? Reach out to us!"
|
||||
inputs={[{ name: "name", type: "text", placeholder: "Your Name", required: true }, { name: "email", type: "email", placeholder: "Your Email", required: true }]}
|
||||
textarea={{ name: "message", placeholder: "How can we help you?", rows: 4 }}
|
||||
/>
|
||||
<FooterBaseReveal
|
||||
logoText="Sheescakes'N More"
|
||||
columns={[{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }]}
|
||||
logoText="Sheescakes'N More"
|
||||
columns={[{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Order", href: "/order" }, { label: "Contact", href: "/contact" }] }]}
|
||||
copyrightText="© 2024 Sheescakes'N More."
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
|
||||
@@ -3,46 +3,38 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
|
||||
const navLinks = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
export default function MenuPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "Menu", id: "/menu" }, { name: "Order", id: "/order" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Sheescakes'N More"
|
||||
/>
|
||||
<ProductCardOne
|
||||
title="Our Bakery Menu"
|
||||
description="Handcrafted cakes and treats made daily in Northern Cambria."
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
<NavbarLayoutFloatingOverlay navItems={navLinks} brandName="Sheescakes'N More" />
|
||||
<ProductCardThree
|
||||
title="Our Sweet Creations"
|
||||
description="Indulge in our selection of freshly baked desserts, from signature cheesecakes to artisan cupcakes."
|
||||
gridVariant="bento-grid"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
textboxLayout="split"
|
||||
products={[
|
||||
{ id: "p1", name: "Classic Strawberry Cheesecake", price: "$35.00", imageSrc: "http://img.b2bpic.net/free-photo/homemade-cheese-cake_169016-1935.jpg" },
|
||||
{ id: "p2", name: "Chocolate Fudge Cupcake", price: "$4.50", imageSrc: "http://img.b2bpic.net/free-photo/female-hand-holding-sweet-roll-from-wooden-board_114579-25729.jpg" },
|
||||
{ id: "p3", name: "Signature Latte", price: "$5.00", imageSrc: "http://img.b2bpic.net/free-photo/side-view-frappe-cake-wooden-plate_23-2148222451.jpg" }
|
||||
{ id: "1", name: "Signature Strawberry Cheesecake", price: "$35", imageSrc: "http://img.b2bpic.net/free-photo/waitress-holding-cake_23-2147821281.jpg?_wi=1" },
|
||||
{ id: "2", name: "Double Chocolate Cupcakes", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/waitress-holding-cake_23-2147821281.jpg?_wi=1" },
|
||||
{ id: "3", name: "Vanilla Bean Tart", price: "$22", imageSrc: "http://img.b2bpic.net/free-photo/waitress-holding-cake_23-2147821281.jpg?_wi=1" }
|
||||
]}
|
||||
/>
|
||||
<FooterBaseReveal
|
||||
logoText="Sheescakes'N More"
|
||||
columns={[{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "Order", href: "/order" }, { label: "Contact", href: "/contact" }] }, { title: "Info", items: [{ label: "About Us", href: "/about" }, { label: "Privacy Policy", href: "#" }] }]}
|
||||
columns={[{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -3,42 +3,37 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
|
||||
const navLinks = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Order", id: "/order" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
export default function OrderPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "Menu", id: "/menu" }, { name: "Order", id: "/order" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Sheescakes'N More"
|
||||
/>
|
||||
<ContactCenter
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
tag="Order Process"
|
||||
title="Place Your Order"
|
||||
description="Fill out the details below to request your favorite treats. We will contact you to confirm timing and pickup/delivery options."
|
||||
inputPlaceholder="Your Name and Order Details"
|
||||
buttonText="Submit Order Request"
|
||||
<NavbarLayoutFloatingOverlay navItems={navLinks} brandName="Sheescakes'N More" />
|
||||
<ProductCardTwo
|
||||
title="Our Menu"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
products={[
|
||||
{ id: "1", brand: "Classic", name: "New York Cheesecake", price: "$25.00", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/waitress-holding-cake_23-2147821281.jpg?_wi=1" },
|
||||
{ id: "2", brand: "Specialty", name: "Cupcake Box", price: "$15.00", rating: 4, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/delicious-cupcakes-display_23-2148766164.jpg?_wi=1" }
|
||||
]}
|
||||
/>
|
||||
<FooterBaseReveal
|
||||
logoText="Sheescakes'N More"
|
||||
columns={[{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "Order", href: "/order" }, { label: "Contact", href: "/contact" }] }, { title: "Info", items: [{ label: "About Us", href: "/about" }, { label: "Privacy Policy", href: "#" }] }]}
|
||||
logoText="Sheescakes'N More"
|
||||
columns={[{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Order", href: "/order" }, { label: "Contact", href: "/contact" }] }]}
|
||||
copyrightText="© 2024 Sheescakes'N More."
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -9,6 +9,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
const navLinks = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Order", id: "/order" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
@@ -39,7 +40,7 @@ export default function LandingPage() {
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Homemade Cheesecakes & Sweet Treats"
|
||||
description="Freshly baked with love in Northern Cambria."
|
||||
buttons={[{ text: "Order Now", href: "/contact" }]}
|
||||
buttons={[{ text: "Order Now", href: "/order" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/waitress-holding-cake_23-2147821281.jpg?_wi=1"
|
||||
testimonials={[{ name: "Jane Doe", handle: "@janedoe", testimonial: "The best cheesecake I've ever had!", rating: 5 }]}
|
||||
/>
|
||||
@@ -49,7 +50,7 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
logoText="Sheescakes'N More"
|
||||
columns={[
|
||||
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }
|
||||
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Order", href: "/order" }, { label: "Contact", href: "/contact" }] }
|
||||
]}
|
||||
copyrightText="© 2024 Sheescakes'N More."
|
||||
/>
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-mulish), sans-serif;
|
||||
font-family: var(--font-playfair), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-mulish), sans-serif;
|
||||
font-family: var(--font-playfair), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #fbf8f5;
|
||||
--background: #fdfbf7;
|
||||
--card: #f4ede6;
|
||||
--foreground: #4a3c31;
|
||||
--primary-cta: #d4a373;
|
||||
|
||||
Reference in New Issue
Block a user