63 lines
2.8 KiB
TypeScript
63 lines
2.8 KiB
TypeScript
import AboutTestimonial from '@/components/sections/about/AboutTestimonial';
|
|
import FeaturesTaggedCards from '@/components/sections/features/FeaturesTaggedCards';
|
|
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
|
import NavbarCentered from '@/components/ui/NavbarCentered';
|
|
|
|
export default function App() {
|
|
return (
|
|
<>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarCentered
|
|
logo="SweetCrumb"
|
|
navItems={[
|
|
{ name: "Home", href: "#hero" },
|
|
{ name: "Our Story", href: "#about" },
|
|
{ name: "Specials", href: "#products" },
|
|
]}
|
|
ctaButton={{
|
|
text: "Order Now", href: "#order"}}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroBillboard
|
|
tag="Est. 1994"
|
|
title="Baking Warmth Daily"
|
|
description="Authentic, artisanal bread and pastries baked from scratch every morning in the heart of the city."
|
|
primaryButton={{
|
|
text: "Browse Menu", href: "#products"}}
|
|
secondaryButton={{
|
|
text: "Learn More", href: "#about"}}
|
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=eubn7c"
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<AboutTestimonial
|
|
tag="Our Philosophy"
|
|
quote="Our bread is the product of time, love, and the finest local ingredients. We believe in simplicity and patience."
|
|
author="Elena Rossi"
|
|
role="Head Baker"
|
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ix09w5"
|
|
/>
|
|
</div>
|
|
|
|
<div id="products" data-section="products">
|
|
<FeaturesTaggedCards
|
|
tag="Signature Baked Goods"
|
|
title="Fresh from the Oven"
|
|
description="Explore our daily selection of handcrafted delights made with traditional techniques."
|
|
items={[
|
|
{
|
|
tag: "Signature", title: "Butter Croissants", description: "Layers of buttery, flaky pastry folded 27 times.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=1wtxpt"},
|
|
{
|
|
tag: "Artisan", title: "Rustic Sourdough", description: "Naturally leavened loaf with a crackling crust.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cdpsmo"},
|
|
{
|
|
tag: "Seasonal", title: "Berry Tart", description: "Fresh berries on a bed of vanilla cream.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=beel6i"},
|
|
]}
|
|
/>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|