Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 604766ef5a | |||
| 27fb600c09 | |||
| 90948c586f | |||
| 1173b0979f |
@@ -28,7 +28,7 @@ export default function BlogPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Fia"
|
brandName="Fia"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "hero" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Menu", id: "features" },
|
{ name: "Menu", id: "features" },
|
||||||
{ name: "Stories", id: "testimonial" },
|
{ name: "Stories", id: "testimonial" },
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
||||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||||
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
||||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||||
@@ -42,20 +42,23 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroOverlay
|
<HeroSplitDualMedia
|
||||||
title="Welcome to Fia"
|
title="Welcome to Fia"
|
||||||
description="Discover exceptional coffee, warm hospitality, and a community where every cup tells a story. Your perfect coffeeshop escape awaits."
|
description="Discover exceptional coffee, warm hospitality, and a community where every cup tells a story. Your perfect coffeeshop escape awaits."
|
||||||
tag="Artisanal Coffee Experience"
|
tag="Artisanal Coffee Experience"
|
||||||
tagIcon={Coffee}
|
tagIcon={Coffee}
|
||||||
imageSrc="https://img.b2bpic.net/free-photo/cozy-cafe_1098-13854.jpg"
|
background={{ variant: "plain" }}
|
||||||
imageAlt="Fia Coffeeshop Interior"
|
mediaItems={[
|
||||||
textPosition="bottom-left"
|
{ imageSrc: "https://img.b2bpic.net/free-photo/cozy-cafe_1098-13854.jpg", imageAlt: "Fia Coffeeshop Interior" },
|
||||||
showBlur={true}
|
{ imageSrc: "https://img.b2bpic.net/free-photo/cafe-interior-with-orange-sofa-three-tables-three-black-chairs_181624-8624.jpg", imageAlt: "Fia Seating Area" }
|
||||||
showDimOverlay={false}
|
]}
|
||||||
|
rating={5}
|
||||||
|
ratingText="Rated by loving Customers"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Explore Menu", href: "#features" },
|
{ text: "Explore Menu", href: "#features" },
|
||||||
{ text: "Reserve Now", href: "#contact" }
|
{ text: "Reserve Now", href: "#contact" }
|
||||||
]}
|
]}
|
||||||
|
mediaAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -85,12 +85,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Fia"
|
brandName="Fia"
|
||||||
navItems={[
|
navItems={[
|
||||||
{"name":"Home","id":"/"},
|
{"name":"Home","id":"hero"},
|
||||||
{"name":"About","id":"about"},
|
{"name":"About","id":"about"},
|
||||||
{"name":"Menu","id":"features"},
|
{"name":"Menu","id":"features"},
|
||||||
{"name":"Stories","id":"testimonial"},
|
{"name":"Stories","id":"testimonial"},
|
||||||
{"name":"Contact","id":"contact"},
|
{"name":"Contact","id":"contact"}
|
||||||
{"name":"Shop","id":"/shop"}
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
@@ -133,12 +132,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Fia"
|
brandName="Fia"
|
||||||
navItems={[
|
navItems={[
|
||||||
{"name":"Home","id":"/"},
|
{"name":"Home","id":"hero"},
|
||||||
{"name":"About","id":"about"},
|
{"name":"About","id":"about"},
|
||||||
{"name":"Menu","id":"features"},
|
{"name":"Menu","id":"features"},
|
||||||
{"name":"Stories","id":"testimonial"},
|
{"name":"Stories","id":"testimonial"},
|
||||||
{"name":"Contact","id":"contact"},
|
{"name":"Contact","id":"contact"}
|
||||||
{"name":"Shop","id":"/shop"}
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
@@ -188,12 +186,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Fia"
|
brandName="Fia"
|
||||||
navItems={[
|
navItems={[
|
||||||
{"name":"Home","id":"/"},
|
{"name":"Home","id":"hero"},
|
||||||
{"name":"About","id":"about"},
|
{"name":"About","id":"about"},
|
||||||
{"name":"Menu","id":"features"},
|
{"name":"Menu","id":"features"},
|
||||||
{"name":"Stories","id":"testimonial"},
|
{"name":"Stories","id":"testimonial"},
|
||||||
{"name":"Contact","id":"contact"},
|
{"name":"Contact","id":"contact"}
|
||||||
{"name":"Shop","id":"/shop"}
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -37,12 +37,11 @@ export default function ShopPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Fia"
|
brandName="Fia"
|
||||||
navItems={[
|
navItems={[
|
||||||
{"name":"Home","id":"/"},
|
{"name":"Home","id":"hero"},
|
||||||
{"name":"About","id":"about"},
|
{"name":"About","id":"about"},
|
||||||
{"name":"Menu","id":"features"},
|
{"name":"Menu","id":"features"},
|
||||||
{"name":"Stories","id":"testimonial"},
|
{"name":"Stories","id":"testimonial"},
|
||||||
{"name":"Contact","id":"contact"},
|
{"name":"Contact","id":"contact"}
|
||||||
{"name":"Shop","id":"/shop"}
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
@@ -84,12 +83,11 @@ export default function ShopPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Fia"
|
brandName="Fia"
|
||||||
navItems={[
|
navItems={[
|
||||||
{"name":"Home","id":"/"},
|
{"name":"Home","id":"hero"},
|
||||||
{"name":"About","id":"about"},
|
{"name":"About","id":"about"},
|
||||||
{"name":"Menu","id":"features"},
|
{"name":"Menu","id":"features"},
|
||||||
{"name":"Stories","id":"testimonial"},
|
{"name":"Stories","id":"testimonial"},
|
||||||
{"name":"Contact","id":"contact"},
|
{"name":"Contact","id":"contact"}
|
||||||
{"name":"Shop","id":"/shop"}
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user