Update src/app/contact/page.tsx
This commit is contained in:
@@ -7,7 +7,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
@@ -25,37 +25,21 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Products",
|
||||
id: "/products",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Products", id: "/products" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Mwanzo Paints"
|
||||
button={{ text: "Get Quote", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-body" data-section="contact-body">
|
||||
<ContactCenter
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Get in touch"
|
||||
title="Visit Us in Kitale"
|
||||
description="Have questions? Our experts are ready to assist you today."
|
||||
@@ -71,46 +55,11 @@ export default function LandingPage() {
|
||||
description="Read what our customers say about our service."
|
||||
showRating={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "c1",
|
||||
name: "Grace P.",
|
||||
handle: "@gracep",
|
||||
testimonial: "Excellent service and fast delivery!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-man-wearing-apron-attractive-caucasian-male-barista-cafe-restaurant-owner-cross-arms-smile-with-confident-warm-welcome-his-successful-business-place_609648-2444.jpg",
|
||||
},
|
||||
{
|
||||
id: "c2",
|
||||
name: "Paul M.",
|
||||
handle: "@paulm",
|
||||
testimonial: "Very professional and helpful staff.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-confident-asian-businesswoman-cross-arms-chest-looking-confident-standing-near_1258-198997.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "c3",
|
||||
name: "Linda K.",
|
||||
handle: "@lindak",
|
||||
testimonial: "Best paint quality in Kitale.",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-project_23-2149721887.jpg",
|
||||
},
|
||||
{
|
||||
id: "c4",
|
||||
name: "Ben T.",
|
||||
handle: "@bent",
|
||||
testimonial: "Highly recommended for all home projects.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-business-man-standing-outside_1262-3492.jpg",
|
||||
},
|
||||
{
|
||||
id: "c5",
|
||||
name: "Susan O.",
|
||||
handle: "@susano",
|
||||
testimonial: "Great variety and fair prices.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2579.jpg",
|
||||
},
|
||||
{ id: "c1", name: "Grace P.", handle: "@gracep", testimonial: "Excellent service and fast delivery!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-man-wearing-apron-attractive-caucasian-male-barista-cafe-restaurant-owner-cross-arms-smile-with-confident-warm-welcome-his-successful-business-place_609648-2444.jpg" },
|
||||
{ id: "c2", name: "Paul M.", handle: "@paulm", testimonial: "Very professional and helpful staff.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-confident-asian-businesswoman-cross-arms-chest-looking-confident-standing-near_1258-198997.jpg" },
|
||||
{ id: "c3", name: "Linda K.", handle: "@lindak", testimonial: "Best paint quality in Kitale.", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-project_23-2149721887.jpg" },
|
||||
{ id: "c4", name: "Ben T.", handle: "@bent", testimonial: "Highly recommended for all home projects.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-business-man-standing-outside_1262-3492.jpg" },
|
||||
{ id: "c5", name: "Susan O.", handle: "@susano", testimonial: "Great variety and fair prices.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2579.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -118,32 +67,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Consultation",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Delivery",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Contact", href: "/contact" }] },
|
||||
{ title: "Services", items: [{ label: "Consultation", href: "/services" }, { label: "Delivery", href: "/services" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Mwanzo Paints Limited, Kitale, Kenya."
|
||||
bottomRightText="Built with quality."
|
||||
|
||||
Reference in New Issue
Block a user