Merge version_2 into main #4
@@ -2,13 +2,14 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import { Star } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -86,54 +87,51 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
<TestimonialCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Miller", role: "Local Foodie", company: "Reviewer", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-eating-pizza_23-2148773529.jpg"},
|
||||
id: "1", name: "Sarah Miller", role: "Local Foodie", testimonial: "Best shawarma I've ever had in the city!", icon: Star
|
||||
},
|
||||
{
|
||||
id: "2", name: "John Doe", role: "Regular", company: "Customer", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5054.jpg"},
|
||||
id: "2", name: "John Doe", role: "Regular", testimonial: "Consistently delicious and quick service.", icon: Star
|
||||
},
|
||||
{
|
||||
id: "3", name: "Emily Chen", role: "Vlogger", company: "Food Critic", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blonde-influencer-recording-nutrition-food_23-2148135479.jpg"},
|
||||
{
|
||||
id: "4", name: "Mike Ross", role: "Office Worker", company: "Client", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-taking-photos_23-2149250065.jpg"},
|
||||
id: "3", name: "Emily Chen", role: "Vlogger", testimonial: "Authentic taste that reminds me of home.", icon: Star
|
||||
}
|
||||
]}
|
||||
title="Foodie Favorites"
|
||||
description="See why our customers keep coming back for more."
|
||||
title="Customer Reviews"
|
||||
description="What our loyal guests are saying about us."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
<ContactText
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="Lazeez Shawarma - 123 Flavor St, Cityville. Open Mon-Sun 11am-10pm. Call us at (555) 123-4567 or email at hello@lazeez.com"
|
||||
useInvertedBackground={true}
|
||||
title="Visit or Order Now"
|
||||
description="Drop us a message for catering, feedback, or general inquiries."
|
||||
inputs={[
|
||||
{
|
||||
name: "name", type: "text", placeholder: "Your Name"},
|
||||
{
|
||||
name: "email", type: "email", placeholder: "Your Email"},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "How can we help?"}}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-vegetable-meal-with-fresh-tomatoes-cucumbers-table-food-vegetable-meat-meal_140725-26363.jpg?_wi=1"
|
||||
logoText="Lazeez Shawarma"
|
||||
copyrightText="© 2025 Lazeez Shawarma"
|
||||
columns={[
|
||||
{
|
||||
title: "Links", items: [
|
||||
{ label: "Menu", href: "#menu" },
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f5f5f5;
|
||||
--card: #ffffff;
|
||||
--foreground: #1c1c1c;
|
||||
--primary-cta: #1c1c1c;
|
||||
--background: #f6f0e9;
|
||||
--card: #efe7dd;
|
||||
--foreground: #2b180a;
|
||||
--primary-cta: #2b180a;
|
||||
--primary-cta-text: #f5f5f5;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta: #efe7dd;
|
||||
--secondary-cta-text: #1c1c1c;
|
||||
--accent: #e63946;
|
||||
--background-accent: #e8bea8;
|
||||
--accent: #94877c;
|
||||
--background-accent: #afa094;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user