11 Commits

Author SHA1 Message Date
cd33459340 Merge version_4 into main
Merge version_4 into main
2026-05-22 03:28:30 +00:00
73e2db571f Update src/app/products/page.tsx 2026-05-22 03:28:27 +00:00
39ece74895 Update src/app/page.tsx 2026-05-22 03:28:27 +00:00
94b6ce3c23 Merge version_4 into main
Merge version_4 into main
2026-05-22 03:28:06 +00:00
f5b2e76d52 Add src/app/products/page.tsx 2026-05-22 03:28:00 +00:00
4ec205476b Update src/app/page.tsx 2026-05-22 03:28:00 +00:00
a4beaf43f2 Merge version_3 into main
Merge version_3 into main
2026-05-22 03:19:02 +00:00
302a421a01 Update src/app/page.tsx 2026-05-22 03:18:56 +00:00
e55ab8ac53 Merge version_2 into main
Merge version_2 into main
2026-05-22 03:17:34 +00:00
4873552be6 Update src/app/page.tsx 2026-05-22 03:17:31 +00:00
2bca2c635e Merge version_1 into main
Merge version_1 into main
2026-05-22 03:10:11 +00:00
2 changed files with 104 additions and 35 deletions

View File

@@ -12,7 +12,7 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import { Home, ShoppingBag, Sparkles } from "lucide-react";
import { Home, ShoppingBag, Sparkles, Droplets, Utensils } from "lucide-react";
export default function LandingPage() {
return (
@@ -34,7 +34,7 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Shop", id: "products" },
{ name: "Products", id: "/products" },
{ name: "Contact", id: "contact" }
]}
brandName="Superette Jalal"
@@ -44,12 +44,12 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitDualMedia
title="Everything You Need, Every Day"
description="Experience premium quality and convenience at Superette Jalal. Your neighborhood store for freshness, variety, and trusted value."
description="Experience premium quality and convenience at Superette Jalal. Your neighborhood destination for fresh cosmetics, fine perfumes, and kitchen essentials."
tag="Welcome to Superette Jalal"
background={{ variant: "gradient-bars" }}
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/abundance-fresh-fruit-vegetables-indoors-generated-by-ai_188544-42434.jpg", imageAlt: "Modern Supermarket Interior" },
{ imageSrc: "http://img.b2bpic.net/free-photo/local-grocery-store-vendor-arranges-food_482257-76628.jpg", imageAlt: "Welcoming Grocery Aisles" }
{ imageSrc: "http://img.b2bpic.net/free-photo/beauty-products-collection-arrangement_23-2149363574.jpg", imageAlt: "Premium Cosmetics and Perfumes" },
{ imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-with-cooking-utensils-tools_23-2149021669.jpg", imageAlt: "Essential Kitchen Products" }
]}
mediaAnimation="slide-up"
rating={5}
@@ -61,7 +61,7 @@ export default function LandingPage() {
<TextSplitAbout
useInvertedBackground={false}
title="A Commitment to Quality"
description={["At Superette Jalal, we believe that every shopping trip should feel special. We carefully select the finest products for your home, from fresh farm produce to artisanal snacks, ensuring quality you can trust at prices you'll love."]}
description={["At Superette Jalal, we believe that every shopping trip should feel special. We curate a refined selection of high-end cosmetics, luxury perfumes, and durable kitchen essentials to elevate your daily routine."]}
/>
</div>
@@ -71,14 +71,15 @@ export default function LandingPage() {
textboxLayout="split"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
buttons={[{ text: "Browse Items", href: "/products" }]}
products={[
{ id: "1", name: "Fresh Harvest Vegetables", price: "Varies by weight", imageSrc: "http://img.b2bpic.net/free-photo/fresh-greens-basil-coriander-lettuce-purple-basil-mountain-coriander-dill-green-onion-plastic-boxes-grey-concrete_114579-3792.jpg" },
{ id: "2", name: "Premium Skincare", price: "$12.99", imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-bokeh-defocused-shopping-mall-interior-department-store_1203-9457.jpg" },
{ id: "3", name: "Global Snacks & Drinks", price: "$3.49", imageSrc: "http://img.b2bpic.net/free-photo/yogurt-drinks-section-supermarket_53876-63415.jpg" },
{ id: "4", name: "Household Cleaning Kits", price: "$8.99", imageSrc: "http://img.b2bpic.net/free-photo/wearing-shoes-protection-against-corona-virus-supermarket_342744-1156.jpg" }
{ id: "1", name: "Artisanal Perfume Collection", price: "$45.00", imageSrc: "http://img.b2bpic.net/free-photo/elegant-perfume-bottles-display_23-2149386345.jpg?_wi=1" },
{ id: "2", name: "Professional Cosmetic Palette", price: "$29.99", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-cosmetic-products-table_23-2149226543.jpg?_wi=1" },
{ id: "3", name: "Premium Kitchen Knife Set", price: "$85.00", imageSrc: "http://img.b2bpic.net/free-photo/kitchen-knives-set-wooden-block_23-2148721954.jpg?_wi=1" },
{ id: "4", name: "Essential Bakeware Bundle", price: "$35.50", imageSrc: "http://img.b2bpic.net/free-photo/various-kitchen-tools-cooking-utensils_23-2148483842.jpg?_wi=1" }
]}
title="Explore Our Aisles"
description="From daily essentials to special treats, find everything you need in our organized and welcoming aisles."
description="Discover our curated collection of beauty essentials and high-performance kitchenware."
/>
</div>
@@ -88,12 +89,12 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
features={[
{ icon: ShoppingBag, title: "Fresh Grocery", description: "Daily arrivals of fresh produce and essential ingredients." },
{ icon: Sparkles, title: "Beauty & Care", description: "High-quality perfumes, cosmetics, and skincare products." },
{ icon: Home, title: "Home Essentials", description: "Everything your home needs for cleaning and maintenance." }
{ icon: Droplets, title: "Perfumes & Scents", description: "Exclusive fragrances that define your style." },
{ icon: Sparkles, title: "Cosmetic Care", description: "Premium beauty products for radiant results." },
{ icon: Utensils, title: "Kitchen Essentials", description: "High-quality tools for every modern home chef." }
]}
title="What We Offer"
description="Discover departments designed for your convenience and local lifestyle."
description="Tailored departments designed for your lifestyle."
/>
</div>
@@ -103,17 +104,17 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Sarah Jalal", role: "Local Resident", company: "Neighbor", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-women-doing-their-groceries_23-2149284866.jpg" },
{ id: "2", name: "Michael Reed", role: "Family Head", company: "Regular", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/horizontal-shallow-focus-guy-looking-happily-something-supermarket_181624-60635.jpg" },
{ id: "3", name: "Emma Thompson", role: "Frequent Shopper", company: "Customer", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-woman-shopping-grocery-store_23-2149483183.jpg" }
{ id: "1", name: "Leila K.", role: "Beauty Enthusiast", company: "Customer", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-shopping_23-2149339352.jpg" },
{ id: "2", name: "Omar M.", role: "Home Chef", company: "Customer", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-man-shopping-kitchen-items_23-2149021650.jpg" },
{ id: "3", name: "Fatima Z.", role: "Loyal Shopper", company: "Customer", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-smiling-while-shopping-cosmetics_23-2149363574.jpg" }
]}
kpiItems={[
{ value: "15+", label: "Years Served" },
{ value: "10k+", label: "Happy Neighbors" },
{ value: "99%", label: "Quality Rating" }
{ value: "500+", label: "Beauty Items" },
{ value: "200+", label: "Kitchen Tools" },
{ value: "99%", label: "Customer Satisfaction" }
]}
title="Loved by the Community"
description="Hear what our loyal neighborhood customers say about shopping at Superette Jalal."
description="Hear what our loyal customers say about their experience at Superette Jalal."
/>
</div>
@@ -121,9 +122,9 @@ export default function LandingPage() {
<SocialProofOne
textboxLayout="split"
useInvertedBackground={false}
names={["FreshDaily", "CleanHome", "BeautySpot", "OrganicLife", "SnackTime", "DailyNeed", "EcoStore"]}
title="Trusted Partners"
description="We partner with the best brands to ensure our shelves are always stocked with reliable, high-quality products."
names={["Luxe Beauty", "KitchenMasters", "AromaLab", "PureCosmetics", "HomeChefPro", "EssenceDaily", "StyleEssentials"]}
title="Trusted Brands"
description="We partner with premium names to provide you with the very best."
/>
</div>
@@ -132,14 +133,14 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
faqs={[
{ id: "f1", title: "Do you offer home delivery?", content: "Yes, we offer local home delivery services for your convenience. Please visit the store for more details." },
{ id: "f2", title: "Are you open on weekends?", content: "Yes, we are open 7 days a week to serve you." },
{ id: "f3", title: "How can I check stock for an item?", content: "You can call our store directly or visit us in-person to check current availability." }
{ id: "f1", title: "How do you select your cosmetics?", content: "We source our products from renowned beauty brands to ensure high safety standards and quality." },
{ id: "f2", title: "Can I test perfumes in-store?", content: "Yes, we have a dedicated testing area for all our perfumes so you can choose your perfect scent." },
{ id: "f3", title: "Do you offer kitchen product guarantees?", content: "Most of our premium kitchenware comes with a manufacturer's warranty." }
]}
imageSrc="http://img.b2bpic.net/free-photo/portrait-female-cashier-supermarket-scanning-bar-code-products-sale_342744-1084.jpg"
imageSrc="http://img.b2bpic.net/free-photo/friendly-shop-assistant-helping-customer-cosmetics_23-2149363574.jpg"
mediaAnimation="slide-up"
title="Frequently Asked Questions"
description="Need assistance? Here are answers to commonly asked questions about our store and services."
description="Find answers to your questions about our beauty and kitchen collections."
faqsAnimation="slide-up"
/>
</div>
@@ -148,16 +149,16 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={false}
background={{ variant: "plain" }}
text="Visit us at Superette Jalal and discover a better shopping experience today."
text="Visit us at Superette Jalal, Boulevard Al Moukhtar Sousi or call us at 0630073002 to enquire about our latest arrivals!"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "#hero" }, { label: "About", href: "#about" }, { label: "Shop", href: "#products" }] },
{ items: [{ label: "Departments", href: "#features" }, { label: "Testimonials", href: "#testimonials" }, { label: "FAQ", href: "#faq" }] },
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Contact Us", href: "#contact" }] }
{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/#about" }, { label: "Products", href: "/products" }] },
{ items: [{ label: "Departments", href: "/#features" }, { label: "Testimonials", href: "/#testimonials" }, { label: "FAQ", href: "/#faq" }] },
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Contact Us", href: "/#contact" }] }
]}
logoText="Superette Jalal"
/>
@@ -165,4 +166,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

68
src/app/products/page.tsx Normal file
View File

@@ -0,0 +1,68 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="compact"
sizing="largeSizeMediumTitles"
background="none"
cardStyle="outline"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Products", id: "/products" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Superette Jalal"
/>
</div>
<div id="products" data-section="products" style={{ paddingTop: "100px" }}>
<ProductCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
title="Our Full Collection"
description="Explore all our premium beauty and kitchen essentials in one place."
products={[
{ id: "1", name: "Artisanal Perfume Collection", price: "$45.00", imageSrc: "http://img.b2bpic.net/free-photo/elegant-perfume-bottles-display_23-2149386345.jpg?_wi=2" },
{ id: "2", name: "Professional Cosmetic Palette", price: "$29.99", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-cosmetic-products-table_23-2149226543.jpg?_wi=2" },
{ id: "3", name: "Premium Kitchen Knife Set", price: "$85.00", imageSrc: "http://img.b2bpic.net/free-photo/kitchen-knives-set-wooden-block_23-2148721954.jpg?_wi=2" },
{ id: "4", name: "Essential Bakeware Bundle", price: "$35.50", imageSrc: "http://img.b2bpic.net/free-photo/various-kitchen-tools-cooking-utensils_23-2148483842.jpg?_wi=2" },
{ id: "5", name: "Luxury Skincare Serum", price: "$55.00", imageSrc: "http://img.b2bpic.net/free-photo/skincare-products-on-table_23-2149363574.jpg" },
{ id: "6", name: "Modern Coffee Brewer", price: "$120.00", imageSrc: "http://img.b2bpic.net/free-photo/coffee-maker-machine-kitchen_23-2149021669.jpg" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/#about" }, { label: "Products", href: "/products" }] },
{ items: [{ label: "Departments", href: "/#features" }, { label: "Testimonials", href: "/#testimonials" }, { label: "FAQ", href: "/#faq" }] },
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Contact Us", href: "/#contact" }] }
]}
logoText="Superette Jalal"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}