Merge version_1 into main #2
@@ -7,7 +7,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
@@ -25,34 +25,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Formal",
|
||||
id: "/formal",
|
||||
},
|
||||
{
|
||||
name: "Casual",
|
||||
id: "/casual",
|
||||
},
|
||||
{
|
||||
name: "Ethnic",
|
||||
id: "/ethnic",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Formal", id: "/formal" },
|
||||
{ name: "Casual", id: "/casual" },
|
||||
{ name: "Ethnic", id: "/ethnic" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Sartorial Jodhpur"
|
||||
/>
|
||||
@@ -63,13 +42,7 @@ export default function LandingPage() {
|
||||
layout="section"
|
||||
title="Our Craft"
|
||||
sections={[
|
||||
{
|
||||
heading: "Our Story",
|
||||
content: {
|
||||
type: "paragraph",
|
||||
text: "Started in the heart of Jodhpur, Sartorial was born from a desire to bring bespoke quality to the modern Indian man.",
|
||||
},
|
||||
},
|
||||
{ heading: "Our Story", content: "Started in the heart of Jodhpur, Sartorial was born from a desire to bring bespoke quality to the modern Indian man." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -77,9 +50,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Contact"
|
||||
title="Connect with Us"
|
||||
description="Reach out and let's craft something special."
|
||||
@@ -88,35 +59,11 @@ export default function LandingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/dark-blue-paint-with-shade-background_53876-128599.jpg?_wi=5"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/dark-blue-paint-with-shade-background_53876-128599.jpg"
|
||||
logoText="Sartorial Jodhpur"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Categories",
|
||||
items: [
|
||||
{
|
||||
label: "Formal",
|
||||
href: "/formal",
|
||||
},
|
||||
{
|
||||
label: "Casual",
|
||||
href: "/casual",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] },
|
||||
{ title: "Categories", items: [{ label: "Formal", href: "/formal" }, { label: "Casual", href: "/casual" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -7,7 +7,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
@@ -25,34 +25,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Formal",
|
||||
id: "/formal",
|
||||
},
|
||||
{
|
||||
name: "Casual",
|
||||
id: "/casual",
|
||||
},
|
||||
{
|
||||
name: "Ethnic",
|
||||
id: "/ethnic",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Formal", id: "/formal" },
|
||||
{ name: "Casual", id: "/casual" },
|
||||
{ name: "Ethnic", id: "/ethnic" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Sartorial Jodhpur"
|
||||
/>
|
||||
@@ -61,9 +40,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Get in Touch"
|
||||
title="Find Us"
|
||||
description="Visit our boutique in the heart of Jodhpur."
|
||||
@@ -75,51 +52,18 @@ export default function LandingPage() {
|
||||
layout="section"
|
||||
title="Business Information"
|
||||
sections={[
|
||||
{
|
||||
heading: "Hours of Operation",
|
||||
content: {
|
||||
type: "list",
|
||||
items: [
|
||||
"Mon-Sat: 10:00 AM - 8:00 PM",
|
||||
"Sunday: By appointment only",
|
||||
],
|
||||
},
|
||||
},
|
||||
{ heading: "Hours of Operation", content: ["Mon-Sat: 10:00 AM - 8:00 PM", "Sunday: By appointment only"] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/dark-blue-paint-with-shade-background_53876-128599.jpg?_wi=7"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/dark-blue-paint-with-shade-background_53876-128599.jpg"
|
||||
logoText="Sartorial Jodhpur"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Categories",
|
||||
items: [
|
||||
{
|
||||
label: "Formal",
|
||||
href: "/formal",
|
||||
},
|
||||
{
|
||||
label: "Casual",
|
||||
href: "/casual",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] },
|
||||
{ title: "Categories", items: [{ label: "Formal", href: "/formal" }, { label: "Casual", href: "/casual" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
141
src/app/page.tsx
141
src/app/page.tsx
@@ -28,34 +28,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Formal",
|
||||
id: "/formal",
|
||||
},
|
||||
{
|
||||
name: "Casual",
|
||||
id: "/casual",
|
||||
},
|
||||
{
|
||||
name: "Ethnic",
|
||||
id: "/ethnic",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Formal", id: "/formal" },
|
||||
{ name: "Casual", id: "/casual" },
|
||||
{ name: "Ethnic", id: "/ethnic" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Sartorial Jodhpur"
|
||||
/>
|
||||
@@ -63,20 +42,12 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
title="Sartorial Jodhpur"
|
||||
description="Redefining men's elegance in the heart of Rajasthan with handpicked fabrics and bespoke tailoring."
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Collection",
|
||||
href: "/formal",
|
||||
},
|
||||
{
|
||||
text: "Visit Us",
|
||||
href: "/contact",
|
||||
},
|
||||
{ text: "Explore Collection", href: "/formal" },
|
||||
{ text: "Visit Us", href: "/contact" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-retro-1920s-english-arabian-business-man-wearing-dark-suit-tie-flat-cap_627829-6813.jpg"
|
||||
/>
|
||||
@@ -89,21 +60,9 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Formal Wear",
|
||||
description: "Impeccable suits and shirts for life's milestones.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-female-model-posing-jacket-suit-with-tie-new-feminity-concept_23-2148951008.jpg",
|
||||
},
|
||||
{
|
||||
title: "Casual Chic",
|
||||
description: "Relaxed silhouettes for everyday refined style.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-travel-concept-with-photo-camera_23-2148666295.jpg",
|
||||
},
|
||||
{
|
||||
title: "Ethnic Heritage",
|
||||
description: "Authentic kurtas and sherwanis for modern celebrations.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-turkish-girl-long-red-dress-walks-summer-old-city_1157-13370.jpg",
|
||||
},
|
||||
{ title: "Formal Wear", description: "Impeccable suits and shirts for life's milestones.", imageSrc: "http://img.b2bpic.net/free-photo/elegant-female-model-posing-jacket-suit-with-tie-new-feminity-concept_23-2148951008.jpg" },
|
||||
{ title: "Casual Chic", description: "Relaxed silhouettes for everyday refined style.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-travel-concept-with-photo-camera_23-2148666295.jpg" },
|
||||
{ title: "Ethnic Heritage", description: "Authentic kurtas and sherwanis for modern celebrations.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-turkish-girl-long-red-dress-walks-summer-old-city_1157-13370.jpg" },
|
||||
]}
|
||||
title="Our Signature Collections"
|
||||
description="Curated selection of premium menswear designed for the modern Jodhpur gentleman."
|
||||
@@ -114,31 +73,11 @@ export default function LandingPage() {
|
||||
<TestimonialCardTwelve
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Rajesh Mehta",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mature-businesswoman-isolated-classy-outfit_1303-19300.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Vikram Singh",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-young-man-against-blur-backdrop_23-2148130407.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Amit Sharma",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-fashion-stylish-brunette-woman-model-with-evening-makeup-red-lips-white-jacket_158538-11555.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Suresh Jat",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-seductive-sensual-stylish-woman-boho-dress-sitting-vintage-retro-cafe-drinking-wine-from-glass-wearing-golden-luxury-high-heeled-shoes_285396-6889.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Deepak Rathore",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/studio-close-up-fashion-portrait-pretty-blond-woman-stylish-top-linen-shorts-posing-purple-background_273443-5388.jpg",
|
||||
},
|
||||
{ id: "1", name: "Rajesh Mehta", imageSrc: "http://img.b2bpic.net/free-photo/mature-businesswoman-isolated-classy-outfit_1303-19300.jpg" },
|
||||
{ id: "2", name: "Vikram Singh", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-young-man-against-blur-backdrop_23-2148130407.jpg" },
|
||||
{ id: "3", name: "Amit Sharma", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-fashion-stylish-brunette-woman-model-with-evening-makeup-red-lips-white-jacket_158538-11555.jpg" },
|
||||
{ id: "4", name: "Suresh Jat", imageSrc: "http://img.b2bpic.net/free-photo/attractive-seductive-sensual-stylish-woman-boho-dress-sitting-vintage-retro-cafe-drinking-wine-from-glass-wearing-golden-luxury-high-heeled-shoes_285396-6889.jpg" },
|
||||
{ id: "5", name: "Deepak Rathore", imageSrc: "http://img.b2bpic.net/free-photo/studio-close-up-fashion-portrait-pretty-blond-woman-stylish-top-linen-shorts-posing-purple-background_273443-5388.jpg" },
|
||||
]}
|
||||
cardTitle="Client Stories"
|
||||
cardTag="Testimonials"
|
||||
@@ -148,6 +87,9 @@ export default function LandingPage() {
|
||||
|
||||
<div id="blog" data-section="blog">
|
||||
<BlogCardThree
|
||||
blogs={[]}
|
||||
title="Latest Insights"
|
||||
description="Tailoring tips and seasonal fashion updates."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
@@ -157,50 +99,19 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
text="Experience bespoke tailoring in Sector 7, Chopasni Housing Board. Reach out via WhatsApp for a personal style consultation."
|
||||
buttons={[
|
||||
{
|
||||
text: "WhatsApp Now",
|
||||
href: "https://wa.me/919876543210",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "WhatsApp Now", href: "https://wa.me/919876543210" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/dark-blue-paint-with-shade-background_53876-128599.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/dark-blue-paint-with-shade-background_53876-128599.jpg"
|
||||
logoText="Sartorial Jodhpur"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Categories",
|
||||
items: [
|
||||
{
|
||||
label: "Formal",
|
||||
href: "/formal",
|
||||
},
|
||||
{
|
||||
label: "Casual",
|
||||
href: "/casual",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] },
|
||||
{ title: "Categories", items: [{ label: "Formal", href: "/formal" }, { label: "Casual", href: "/casual" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user