Merge version_2 into main #2

Merged
bender merged 3 commits from version_2 into main 2026-03-27 12:34:48 +00:00
3 changed files with 68 additions and 55 deletions

View File

@@ -3,37 +3,40 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Instagram, Twitter, MessageCircle } from "lucide-react";
export default function ContactPage() {
return (
<ThemeProvider>
<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>
<NavbarStyleCentered
navItems={[{name: "Home", id: "/"}, {name: "Portfolio", id: "/portfolio"}, {name: "Testimonials", id: "/testimonials"}, {name: "Contact", id: "/contact"}]}
brandName="Mkay Designs"
/>
<div className="pt-32 pb-20">
<ContactSplitForm
title="Let's Connect"
description="Contact us for a quote or general inquiry."
inputs={[{name: "name", type: "text", placeholder: "Name"}, {name: "email", type: "email", placeholder: "Email"}]}
textarea={{ name: "message", placeholder: "Your Message" }}
buttonText="Send"
/>
<div className="mt-8 flex justify-center">
<a href="https://wa.me/254700000000" className="flex items-center gap-2 bg-green-500 text-white px-6 py-3 rounded-full hover:bg-green-600">
<MessageCircle /> Chat on WhatsApp
</a>
</div>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[{name: "Home", id: "/"}, {name: "Portfolio", id: "/portfolio"}, {name: "Testimonials", id: "/testimonials"}, {name: "Contact", id: "/contact"}]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Contact"
title="Let's Connect"
description="Contact us for a quote or general inquiry."
mediaAnimation="slide-up"
useInvertedBackground={false}
/>
<div className="mt-8 flex justify-center">
<a href="https://wa.me/254700000000" className="flex items-center gap-2 bg-green-500 text-white px-6 py-3 rounded-full hover:bg-green-600">
<MessageCircle /> Chat on WhatsApp
</a>
</div>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Mkay Designs"
copyrightText="© 2025 Mkay Designs | Nairobi, Kenya"
socialLinks={[{icon: Instagram, href: "#", ariaLabel: "Instagram"}, {icon: Twitter, href: "#", ariaLabel: "Twitter"}]}
/>
</div>
<FooterCard
logoText="Mkay Designs"
copyrightText="© 2025 Mkay Designs | Nairobi, Kenya"
socialLinks={[{icon: Instagram, href: "#", ariaLabel: "Instagram"}, {icon: Twitter, href: "#", ariaLabel: "Twitter"}]}
/>
</ReactLenis>
</ThemeProvider>
);

View File

@@ -3,34 +3,40 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Instagram, Twitter } from "lucide-react";
export default function PortfolioPage() {
return (
<ThemeProvider>
<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>
<NavbarStyleCentered
navItems={[{name: "Home", id: "/"}, {name: "Portfolio", id: "/portfolio"}, {name: "Testimonials", id: "/testimonials"}, {name: "Contact", id: "/contact"}]}
brandName="Mkay Designs"
/>
<div className="pt-32 pb-20">
<FeatureCardMedia
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[{name: "Home", id: "/"}, {name: "Portfolio", id: "/portfolio"}, {name: "Testimonials", id: "/testimonials"}, {name: "Contact", id: "/contact"}]}
/>
</div>
<div id="portfolio" data-section="portfolio">
<FeatureCardNine
title="Our Portfolio"
description="Explore our recent residential and commercial design projects."
animationType="slide-up"
textboxLayout="default"
showStepNumbers={false}
useInvertedBackground={false}
features={[
{ id: "1", title: "Luxury Villa", description: "Modern residential design in Nairobi.", tag: "Residential", imageSrc: "http://img.b2bpic.net/free-photo/luxurious-outdoor-living-space-with-comfortable-sofa_23-2152008212.jpg" },
{ id: "2", title: "Modern Office", description: "Creative workspace transformation.", tag: "Commercial", imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-office_23-2147668767.jpg" }
{ id: 1, title: "Luxury Villa", description: "Modern residential design in Nairobi.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/luxurious-outdoor-living-space-with-comfortable-sofa_23-2152008212.jpg" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-office_23-2147668767.jpg" } },
{ id: 2, title: "Modern Office", description: "Creative workspace transformation.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-office_23-2147668767.jpg" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/luxurious-outdoor-living-space-with-comfortable-sofa_23-2152008212.jpg" } }
]}
/>
</div>
<FooterCard
logoText="Mkay Designs"
copyrightText="© 2025 Mkay Designs | Nairobi, Kenya"
socialLinks={[{icon: Instagram, href: "#", ariaLabel: "Instagram"}, {icon: Twitter, href: "#", ariaLabel: "Twitter"}]}
/>
<div id="footer" data-section="footer">
<FooterCard
logoText="Mkay Designs"
copyrightText="© 2025 Mkay Designs | Nairobi, Kenya"
socialLinks={[{icon: Instagram, href: "#", ariaLabel: "Instagram"}, {icon: Twitter, href: "#", ariaLabel: "Twitter"}]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);

View File

@@ -3,34 +3,38 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Instagram, Twitter } from "lucide-react";
export default function TestimonialsPage() {
return (
<ThemeProvider>
<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>
<NavbarStyleCentered
navItems={[{name: "Home", id: "/"}, {name: "Portfolio", id: "/portfolio"}, {name: "Testimonials", id: "/testimonials"}, {name: "Contact", id: "/contact"}]}
brandName="Mkay Designs"
/>
<div className="pt-32 pb-20">
<TestimonialCardTwo
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[{name: "Home", id: "/"}, {name: "Portfolio", id: "/portfolio"}, {name: "Testimonials", id: "/testimonials"}, {name: "Contact", id: "/contact"}]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
title="Client Reviews"
description="What our clients say about our bespoke design services."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Amina Otieno", role: "Homeowner", testimonial: "Absolutely transformed my home vision!" },
{ id: "2", name: "David Mwangi", role: "CEO", testimonial: "Outstanding office interior design." }
{ id: "1", name: "Amina Otieno", date: "2024-01-01", title: "Review", quote: "Absolutely transformed my home vision!", tag: "User", avatarSrc: "" },
{ id: "2", name: "David Mwangi", date: "2024-02-01", title: "Review", quote: "Outstanding office interior design.", tag: "User", avatarSrc: "" }
]}
/>
</div>
<FooterCard
logoText="Mkay Designs"
copyrightText="© 2025 Mkay Designs | Nairobi, Kenya"
socialLinks={[{icon: Instagram, href: "#", ariaLabel: "Instagram"}, {icon: Twitter, href: "#", ariaLabel: "Twitter"}]}
/>
<div id="footer" data-section="footer">
<FooterCard
logoText="Mkay Designs"
copyrightText="© 2025 Mkay Designs | Nairobi, Kenya"
socialLinks={[{icon: Instagram, href: "#", ariaLabel: "Instagram"}, {icon: Twitter, href: "#", ariaLabel: "Twitter"}]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);