Merge version_4 into main #7

Merged
bender merged 2 commits from version_4 into main 2026-03-05 04:15:13 +00:00
2 changed files with 23 additions and 51 deletions

View File

@@ -1,53 +1,25 @@
import type { Metadata } from "next";
import { Mulish } from "next/font/google";
import { Inter } from "next/font/google";
import "./styles/variables.css";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "ColorPaint - Premium Paint Shop | Order Online with WhatsApp", description: "Shop premium quality paints with 500+ colors. Easy online ordering via WhatsApp with real-time delivery updates. Same-day delivery available.", keywords: "paint shop, buy paint online, premium paint, interior paint, exterior paint, WhatsApp orders, paint delivery", metadataBase: new URL("https://colorpaint.com"),
alternates: {
canonical: "https://colorpaint.com"
},
openGraph: {
title: "ColorPaint - Premium Paint Shop", description: "Transform your spaces with premium quality paints. Order online via WhatsApp.", url: "https://colorpaint.com", siteName: "ColorPaint", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/tools-art-repairing-paint-space-text_185193-108852.jpg", alt: "ColorPaint - Premium Paint Collection"
}
]
},
twitter: {
card: "summary_large_image", title: "ColorPaint - Premium Paint Shop", description: "Shop premium quality paints with 500+ colors and WhatsApp ordering.", images: ["http://img.b2bpic.net/free-photo/tools-art-repairing-paint-space-text_185193-108852.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "ColorPaint - Premium Quality Paints & Fast Delivery", description: "Transform your spaces with premium quality paints. Browse 500+ colors, get 24-hour delivery, and expert support via WhatsApp."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1415,7 +1387,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -29,11 +29,10 @@ export default function LandingPage() {
<NavbarStyleApple
brandName="ColorPaint"
navItems={[
{ name: "Home", id: "hero" },
{ name: "Home", id: "/" },
{ name: "Products", id: "products" },
{ name: "About", id: "about" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
{ name: "FAQ", id: "faq" }
]}
/>
</div>
@@ -41,10 +40,10 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroLogo
logoText="ColorPaint"
description="Transform your spaces with premium quality paints. Browse our collection, customize your order, and receive real-time updates on WhatsApp."
description="Transform your spaces with premium quality paints. Fast 24-hour delivery, 500+ colors, and expert WhatsApp support. Premium quality paints for every project."
buttons={[
{ text: "Shop Now", href: "#products" },
{ text: "Learn More", href: "#about" }
{ text: "Shop Now", href: "products" },
{ text: "Learn More", href: "about" }
]}
imageSrc="http://img.b2bpic.net/free-photo/tools-art-repairing-paint-space-text_185193-108852.jpg"
imageAlt="Professional paint shop with colorful paint displays"
@@ -61,6 +60,7 @@ export default function LandingPage() {
{ icon: Users, label: "Happy Customers", value: "5000+" },
{ icon: Award, label: "Years Experience", value: "15+" }
]}
metricsAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
@@ -68,7 +68,7 @@ export default function LandingPage() {
<div id="products" data-section="products">
<ProductCardOne
title="Featured Paint Collection"
description="Explore our premium selection of interior and exterior paints. Each product is carefully curated for quality and durability."
description="Explore our premium selection of interior and exterior paints. Each product is carefully curated for quality and durability. Fast delivery guaranteed."
tag="Popular"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
@@ -103,7 +103,7 @@ export default function LandingPage() {
<div id="features" data-section="features">
<FeatureCardNineteen
title="How to Order"
description="Simple three-step process to get your perfect paint color delivered to your door."
description="Simple three-step process to get your perfect paint color delivered to your door. Premium quality with fast delivery."
tag="Easy Process"
textboxLayout="default"
useInvertedBackground={false}
@@ -127,9 +127,10 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
title="What Our Customers Say"
description="Specific benefits our customers experience: Fast delivery and premium quality paint that transforms any space beautifully."
description="Real feedback from satisfied customers who trust ColorPaint for their premium quality paints and fast delivery."
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
{
@@ -155,7 +156,7 @@ export default function LandingPage() {
<div id="faq" data-section="faq">
<FaqSplitText
sideTitle="Frequently Asked Questions"
sideDescription="Have questions about our paint products or ordering process? Find answers to common inquiries here."
sideDescription="Have questions about our premium paint products or fast delivery? Find answers to common inquiries here."
textPosition="left"
useInvertedBackground={false}
faqsAnimation="slide-up"
@@ -188,14 +189,14 @@ export default function LandingPage() {
columns={[
{
items: [
{ label: "Home", href: "#hero" },
{ label: "Products", href: "#products" },
{ label: "About", href: "#about" }
{ label: "Home", href: "/" },
{ label: "Products", href: "products" },
{ label: "About", href: "about" }
]
},
{
items: [
{ label: "FAQ", href: "#faq" },
{ label: "FAQ", href: "faq" },
{
label: "Order Status", href: "https://wa.me/919876543210?text=What%20is%20the%20status%20of%20my%20order?"
},