Merge version_1 into main #1
207
src/app/page.tsx
207
src/app/page.tsx
@@ -32,49 +32,27 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Schedule",
|
||||
id: "schedule",
|
||||
},
|
||||
{
|
||||
name: "Pricing",
|
||||
id: "pricing",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About Us", id: "about" },
|
||||
{ name: "Schedule", id: "schedule" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="N&K Cookies"
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Welcome to N&K Cookies!"
|
||||
description="The tastiest cookies in the park! Find us at the Frog Park at Parkwood Terrace, 74 Festival Dr, Point Cook VIC. Look out for the two bananas!"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/plate-sweeties-biscuits-table_114579-5779.jpg"
|
||||
imageAlt="Fresh N&K Cookies"
|
||||
buttons={[
|
||||
{
|
||||
text: "See Schedule",
|
||||
href: "#schedule",
|
||||
},
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "#pricing",
|
||||
},
|
||||
{ text: "See Schedule", href: "#schedule" },
|
||||
{ text: "View Menu", href: "#pricing" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -98,21 +76,9 @@ export default function LandingPage() {
|
||||
title="Find Us at Frog Park"
|
||||
description="We are usually at the park on weekends and select school holidays. Check our schedule below for our next baking day!"
|
||||
accordionItems={[
|
||||
{
|
||||
id: "sat",
|
||||
title: "Saturdays",
|
||||
content: "10:00 AM - 2:00 PM at Festival Drive",
|
||||
},
|
||||
{
|
||||
id: "sun",
|
||||
title: "Sundays",
|
||||
content: "11:00 AM - 3:00 PM at Festival Drive",
|
||||
},
|
||||
{
|
||||
id: "holiday",
|
||||
title: "School Holidays",
|
||||
content: "Check our Instagram for special weekday hours",
|
||||
},
|
||||
{ id: "sat", title: "Saturdays", content: "10:00 AM - 2:00 PM at Festival Drive" },
|
||||
{ id: "sun", title: "Sundays", content: "11:00 AM - 3:00 PM at Festival Drive" },
|
||||
{ id: "holiday", title: "School Holidays", content: "Check our Instagram for special weekday hours" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/delicious-cookies-arrangement_23-2150714430.jpg"
|
||||
mediaAnimation="opacity"
|
||||
@@ -126,43 +92,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
plans={[
|
||||
{
|
||||
id: "single",
|
||||
name: "One Cookie",
|
||||
price: "$2.00",
|
||||
features: [
|
||||
"Classic Chocolate Chip",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Buy Now",
|
||||
},
|
||||
],
|
||||
id: "single", name: "One Cookie", price: "$2.00", features: ["Classic Chocolate Chip"],
|
||||
buttons: [{ text: "Buy Now" }],
|
||||
},
|
||||
{
|
||||
id: "double",
|
||||
name: "Two Cookies",
|
||||
price: "$3.00",
|
||||
features: [
|
||||
"Double the fun",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Buy Now",
|
||||
},
|
||||
],
|
||||
id: "double", name: "Two Cookies", price: "$3.00", features: ["Double the fun"],
|
||||
buttons: [{ text: "Buy Now" }],
|
||||
},
|
||||
{
|
||||
id: "triple",
|
||||
name: "Three Cookies",
|
||||
price: "$3.00",
|
||||
features: [
|
||||
"Best Value!",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Buy Now",
|
||||
},
|
||||
],
|
||||
id: "triple", name: "Three Cookies", price: "$3.00", features: ["Best Value!"],
|
||||
buttons: [{ text: "Buy Now" }],
|
||||
},
|
||||
]}
|
||||
title="Our Cookie Prices"
|
||||
@@ -176,21 +115,9 @@ export default function LandingPage() {
|
||||
title="Payment & Info"
|
||||
tag="How to Buy"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "PayID",
|
||||
description: "nyle.j@icloud.com",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "Cash",
|
||||
description: "Accepted at the park",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "Admin",
|
||||
description: "doodynuggetgaming@gmail.com",
|
||||
},
|
||||
{ id: "m1", value: "PayID", description: "nyle.j@icloud.com" },
|
||||
{ id: "m2", value: "Cash", description: "Accepted at the park" },
|
||||
{ id: "m3", value: "Admin", description: "doodynuggetgaming@gmail.com" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -202,41 +129,11 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Alex P.",
|
||||
handle: "@cookieLover",
|
||||
testimonial: "Best cookies in Point Cook! The banana costumes are hilarious.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-girl-with-doughnuts_23-2148299479.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Jamie R.",
|
||||
handle: "@parkVisitor",
|
||||
testimonial: "So yummy and cheap. The 3 for $3 deal is unbeatable.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-overjoyed-woman-rejoicing-her-success_74855-3513.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Sarah M.",
|
||||
handle: "@localMum",
|
||||
testimonial: "My kids love these guys. Super friendly and always smiling.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/little-boy-mixing-mom-coffee_23-2148443181.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Jordan K.",
|
||||
handle: "@student",
|
||||
testimonial: "The banana costumes make my day every time.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-with-corn-dog_23-2149929461.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Taylor B.",
|
||||
handle: "@foodie",
|
||||
testimonial: "Seriously tasty cookies. Will come back again!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-african-american-woman-eating-german-salty-pastry-pretzel-doing-ok-sign-with-fingers-excellent-symbol_839833-29953.jpg",
|
||||
},
|
||||
{ id: "1", name: "Alex P.", handle: "@cookieLover", testimonial: "Best cookies in Point Cook! The banana costumes are hilarious.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-girl-with-doughnuts_23-2148299479.jpg" },
|
||||
{ id: "2", name: "Jamie R.", handle: "@parkVisitor", testimonial: "So yummy and cheap. The 3 for $3 deal is unbeatable.", imageSrc: "http://img.b2bpic.net/free-photo/happy-overjoyed-woman-rejoicing-her-success_74855-3513.jpg" },
|
||||
{ id: "3", name: "Sarah M.", handle: "@localMum", testimonial: "My kids love these guys. Super friendly and always smiling.", imageSrc: "http://img.b2bpic.net/free-photo/little-boy-mixing-mom-coffee_23-2148443181.jpg" },
|
||||
{ id: "4", name: "Jordan K.", handle: "@student", testimonial: "The banana costumes make my day every time.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-with-corn-dog_23-2149929461.jpg" },
|
||||
{ id: "5", name: "Taylor B.", handle: "@foodie", testimonial: "Seriously tasty cookies. Will come back again!", imageSrc: "http://img.b2bpic.net/free-photo/young-african-american-woman-eating-german-salty-pastry-pretzel-doing-ok-sign-with-fingers-excellent-symbol_839833-29953.jpg" },
|
||||
]}
|
||||
title="What People Say"
|
||||
description="Check out some reviews from our cookie fans!"
|
||||
@@ -247,21 +144,9 @@ export default function LandingPage() {
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "Are you really dressed as bananas?",
|
||||
content: "Yes! Every single time we sell.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "Do you accept PayID?",
|
||||
content: "Absolutely. Use nyle.j@icloud.com",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Where is Frog Park?",
|
||||
content: "Parkwood Terrace & 74 Festival Dr, Point Cook VIC.",
|
||||
},
|
||||
{ id: "q1", title: "Are you really dressed as bananas?", content: "Yes! Every single time we sell." },
|
||||
{ id: "q2", title: "Do you accept PayID?", content: "Absolutely. Use nyle.j@icloud.com" },
|
||||
{ id: "q3", title: "Where is Frog Park?", content: "Parkwood Terrace & 74 Festival Dr, Point Cook VIC." },
|
||||
]}
|
||||
sideTitle="Common Questions"
|
||||
faqsAnimation="slide-up"
|
||||
@@ -271,9 +156,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Stay Updated"
|
||||
title="Contact Us"
|
||||
description="Have questions? Shoot us an email or come see us in person!"
|
||||
@@ -283,32 +166,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Useful Links",
|
||||
items: [
|
||||
{
|
||||
label: "Schedule",
|
||||
href: "#schedule",
|
||||
},
|
||||
{
|
||||
label: "Pricing",
|
||||
href: "#pricing",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Company", items: [{ label: "About Us", href: "#about" }, { label: "Contact", href: "#contact" }] },
|
||||
{ title: "Useful Links", items: [{ label: "Schedule", href: "#schedule" }, { label: "Pricing", href: "#pricing" }] },
|
||||
]}
|
||||
logoText="N&K Cookies"
|
||||
/>
|
||||
@@ -316,4 +175,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user