Merge version_1 into main #2

Merged
bender merged 4 commits from version_1 into main 2026-03-26 18:44:35 +00:00
4 changed files with 68 additions and 329 deletions

View File

@@ -8,34 +8,24 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import SplitAbout from '@/components/sections/about/SplitAbout';
import { Award, CheckCircle, Users } from "lucide-react";
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]}
navItems={[{ name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
brandName="FreshMeatz"
/>
</div>
@@ -47,20 +37,11 @@ export default function LandingPage() {
title="Quality You Can Trust, Freshness You Can Taste"
description="At FreshMeatz Dublin, we are committed to providing our community with the finest selection of premium halal meats. We source our products locally to ensure every cut meets the highest standards of quality, flavor, and religious compliance."
bulletPoints={[
{
title: "100% Certified Halal",
description: "Every product in our shop is sourced from certified suppliers who adhere to strict halal practices.",
},
{
title: "Fresh Daily Cuts",
description: "We pride ourselves on our daily rotation of fresh, high-quality meats prepared by expert butchers.",
},
{
title: "Locally Sourced",
description: "We partner with local farmers to bring you farm-to-table freshness while supporting our regional economy.",
},
{ title: "100% Certified Halal", description: "Every product in our shop is sourced from certified suppliers who adhere to strict halal practices." },
{ title: "Fresh Daily Cuts", description: "We pride ourselves on our daily rotation of fresh, high-quality meats prepared by expert butchers." },
{ title: "Locally Sourced", description: "We partner with local farmers to bring you farm-to-table freshness while supporting our regional economy." }
]}
imageSrc="http://img.b2bpic.net/free-photo/raw-chicken-legs-with-herbs_1220-226.jpg?_wi=5"
imageSrc="http://img.b2bpic.net/free-photo/raw-chicken-legs-with-herbs_1220-226.jpg"
imageAlt="Fresh premium halal meat selection"
/>
</div>
@@ -72,27 +53,9 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal"
useInvertedBackground={true}
metrics={[
{
id: "1",
value: "10+",
title: "Years of Excellence",
description: "Serving the Dublin community with dedication.",
icon: Award,
},
{
id: "2",
value: "500+",
title: "Happy Customers",
description: "Trusted by families across the region daily.",
icon: Users,
},
{
id: "3",
value: "100%",
title: "Halal Certified",
description: "Uncompromising standards in every single cut.",
icon: CheckCircle,
},
{ id: "1", value: "10+", title: "Years of Excellence", description: "Serving the Dublin community with dedication.", icon: Award },
{ id: "2", value: "500+", title: "Happy Customers", description: "Trusted by families across the region daily.", icon: Users },
{ id: "3", value: "100%", title: "Halal Certified", description: "Uncompromising standards in every single cut.", icon: CheckCircle }
]}
title="Our Commitment in Numbers"
description="Serving Dublin, CA with passion and integrity."
@@ -101,38 +64,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Shop",
items: [
{
label: "Beef Cuts",
href: "#",
},
{
label: "Chicken Varieties",
href: "#",
},
{
label: "Lamb Specials",
href: "#",
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
]}
columns={[{ title: "Shop", items: [{ label: "Beef Cuts", href: "#" }, { label: "Chicken Varieties", href: "#" }, { label: "Lamb Specials", href: "#" }] }, { title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Contact", href: "/contact" }] }]}
logoText="FreshMeatz Dublin"
copyrightText="© 2025 FreshMeatz Dublin | Premium Halal Meat Shop"
/>
@@ -140,4 +72,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -6,34 +6,24 @@ import ContactText from '@/components/sections/contact/ContactText';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]}
navItems={[{ name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
brandName="FreshMeatz"
/>
</div>
@@ -41,49 +31,19 @@ export default function LandingPage() {
<div id="contact-info" data-section="contact-info">
<ContactText
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
text="Visit us at 4556 Dublin Blvd, Dublin, CA. Open 9 AM 9 PM daily. Call us: (925) 289-7444."
buttons={[
{
text: "Call Now",
href: "tel:9252897444",
},
]}
buttons={[{ text: "Call Now", href: "tel:9252897444" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Shop",
items: [
{
label: "Products",
href: "/products",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
columns={[{ title: "Shop", items: [{ label: "Products", href: "/products" }, { label: "Contact", href: "/contact" }] }, { title: "Legal", items: [{ label: "Privacy Policy", href: "#" }] }]}
logoText="FreshMeatz"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -14,27 +14,22 @@ export default function LandingPage() {
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="FreshMeatz"
/>
@@ -42,23 +37,12 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroLogoBillboardSplit
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
logoText="Fresh Halal Meats. Premium Quality."
description="Locally sourced beef, chicken, goat, and seafood prepared fresh daily."
buttons={[
{
text: "Call Now",
href: "tel:9252897444",
},
{
text: "Visit Store",
href: "/contact",
},
]}
buttons={[{ text: "Call Now", href: "tel:9252897444" }, { text: "Visit Store", href: "/contact" }]}
layoutOrder="default"
imageSrc="http://img.b2bpic.net/free-photo/raw-chicken-legs-with-herbs_1220-226.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/raw-chicken-legs-with-herbs_1220-226.jpg"
mediaAnimation="none"
/>
</div>
@@ -69,39 +53,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
features={[
{
id: 1,
title: "Locally Sourced",
description: "Hand-picked local farms for the highest quality.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-vector/food-white-background_24908-61023.jpg?_wi=1",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-vector/food-white-background_24908-61023.jpg?_wi=2",
},
},
{
id: 2,
title: "100% Halal Certified",
description: "Strictly monitored halal processes from start to finish.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-vector/food-white-background_24908-61023.jpg?_wi=3",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-vector/food-white-background_24908-61023.jpg?_wi=4",
},
},
{
id: 3,
title: "Prepared Daily",
description: "Fresh cuts ready every morning for your convenience.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-vector/food-white-background_24908-61023.jpg?_wi=5",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-vector/food-white-background_24908-61023.jpg?_wi=6",
},
},
{ id: 1, title: "Locally Sourced", description: "Hand-picked local farms for the highest quality.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-vector/food-white-background_24908-61023.jpg" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-vector/food-white-background_24908-61023.jpg" } },
{ id: 2, title: "100% Halal Certified", description: "Strictly monitored halal processes from start to finish.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-vector/food-white-background_24908-61023.jpg" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-vector/food-white-background_24908-61023.jpg" } },
{ id: 3, title: "Prepared Daily", description: "Fresh cuts ready every morning for your convenience.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-vector/food-white-background_24908-61023.jpg" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-vector/food-white-background_24908-61023.jpg" } }
]}
showStepNumbers={false}
title="Our Commitment to Quality"
@@ -114,46 +68,10 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Ali Reza",
date: "2024-10-12",
title: "Loyal Customer",
quote: "The freshest meat in Dublin, hands down.",
tag: "Verified",
avatarSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-woman-showing-ok-sign_1262-17571.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/tasty-beef-steak-with-salt-pepper-wooden-cutting-board-chef-decorating-meat-with-rosemary-smiling-man-with-bearded-face-gloves-tattoo-his-arm-background_651396-3906.jpg?_wi=1",
},
{
id: "2",
name: "Sarah Ahmed",
date: "2024-11-05",
title: "Foodie",
quote: "Clean, professional, and excellent quality.",
tag: "Verified",
avatarSrc: "http://img.b2bpic.net/free-photo/african-american-vegan-guy-recommending-fresh-produce_482257-93793.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-raw-lamb-chops-with-herbs-salt-dark-background_84443-72394.jpg?_wi=1",
},
{
id: "3",
name: "Mark Jones",
date: "2024-12-01",
title: "Regular",
quote: "Great selection, even better service.",
tag: "Verified",
avatarSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-woman-showing-ok-sign_1262-17571.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/tasty-beef-steak-with-salt-pepper-wooden-cutting-board-chef-decorating-meat-with-rosemary-smiling-man-with-bearded-face-gloves-tattoo-his-arm-background_651396-3906.jpg?_wi=2",
},
{
id: "4",
name: "Fatima Zahra",
date: "2024-12-15",
title: "Home Cook",
quote: "Everything I buy is top notch.",
tag: "Verified",
avatarSrc: "http://img.b2bpic.net/free-photo/african-american-vegan-guy-recommending-fresh-produce_482257-93793.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-raw-lamb-chops-with-herbs-salt-dark-background_84443-72394.jpg?_wi=2",
},
{ id: "1", name: "Ali Reza", date: "2024-10-12", title: "Loyal Customer", quote: "The freshest meat in Dublin, hands down.", tag: "Verified", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-woman-showing-ok-sign_1262-17571.jpg", imageSrc: "http://img.b2bpic.net/free-photo/tasty-beef-steak-with-salt-pepper-wooden-cutting-board-chef-decorating-meat-with-rosemary-smiling-man-with-bearded-face-gloves-tattoo-his-arm-background_651396-3906.jpg" },
{ id: "2", name: "Sarah Ahmed", date: "2024-11-05", title: "Foodie", quote: "Clean, professional, and excellent quality.", tag: "Verified", avatarSrc: "http://img.b2bpic.net/free-photo/african-american-vegan-guy-recommending-fresh-produce_482257-93793.jpg", imageSrc: "http://img.b2bpic.net/free-photo/fresh-raw-lamb-chops-with-herbs-salt-dark-background_84443-72394.jpg" },
{ id: "3", name: "Mark Jones", date: "2024-12-01", title: "Regular", quote: "Great selection, even better service.", tag: "Verified", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-woman-showing-ok-sign_1262-17571.jpg", imageSrc: "http://img.b2bpic.net/free-photo/tasty-beef-steak-with-salt-pepper-wooden-cutting-board-chef-decorating-meat-with-rosemary-smiling-man-with-bearded-face-gloves-tattoo-his-arm-background_651396-3906.jpg" },
{ id: "4", name: "Fatima Zahra", date: "2024-12-15", title: "Home Cook", quote: "Everything I buy is top notch.", tag: "Verified", avatarSrc: "http://img.b2bpic.net/free-photo/african-american-vegan-guy-recommending-fresh-produce_482257-93793.jpg", imageSrc: "http://img.b2bpic.net/free-photo/fresh-raw-lamb-chops-with-herbs-salt-dark-background_84443-72394.jpg" }
]}
title="What Our Customers Say"
description="Authentic feedback from our community."
@@ -162,34 +80,11 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Shop",
items: [
{
label: "Products",
href: "/products",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
columns={[{ title: "Shop", items: [{ label: "Products", href: "/products" }, { label: "Contact", href: "/contact" }] }, { title: "Legal", items: [{ label: "Privacy Policy", href: "#" }] }]}
logoText="FreshMeatz"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -6,34 +6,24 @@ import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
export default function LandingPage() {
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]}
navItems={[{ name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
brandName="FreshMeatz"
/>
</div>
@@ -45,24 +35,9 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{
id: "beef",
name: "Prime Beef Cuts",
price: "Market Price",
imageSrc: "http://img.b2bpic.net/free-photo/raw-chicken-legs-with-herbs_1220-226.jpg?_wi=2",
},
{
id: "chicken",
name: "Fresh Organic Chicken",
price: "Market Price",
imageSrc: "http://img.b2bpic.net/free-photo/raw-chicken-legs-with-herbs_1220-226.jpg?_wi=3",
},
{
id: "goat",
name: "Farm Fresh Goat",
price: "Market Price",
imageSrc: "http://img.b2bpic.net/free-photo/raw-chicken-legs-with-herbs_1220-226.jpg?_wi=4",
},
{ id: "beef", name: "Prime Beef Cuts", price: "Market Price", imageSrc: "http://img.b2bpic.net/free-photo/raw-chicken-legs-with-herbs_1220-226.jpg" },
{ id: "chicken", name: "Fresh Organic Chicken", price: "Market Price", imageSrc: "http://img.b2bpic.net/free-photo/raw-chicken-legs-with-herbs_1220-226.jpg" },
{ id: "goat", name: "Farm Fresh Goat", price: "Market Price", imageSrc: "http://img.b2bpic.net/free-photo/raw-chicken-legs-with-herbs_1220-226.jpg" }
]}
title="Our Premium Selection"
description="Explore our variety of fresh, hand-cut halal meats and seafood."
@@ -71,34 +46,11 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Shop",
items: [
{
label: "Products",
href: "/products",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
columns={[{ title: "Shop", items: [{ label: "Products", href: "/products" }, { label: "Contact", href: "/contact" }] }, { title: "Legal", items: [{ label: "Privacy Policy", href: "#" }] }]}
logoText="FreshMeatz"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}