Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -98,7 +98,7 @@ export default function AboutPage() {
|
||||
{/* Footer */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-vibrant-overhead-shot-of-shopping-bags-1773327822490-b5c9a626.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-vibrant-overhead-shot-of-shopping-bags-1773327822490-b5c9a626.png?_wi=2"
|
||||
imageAlt="Shopping and savings background"
|
||||
logoText="PriceMatch"
|
||||
copyrightText="© 2025 PriceMatch. Empowering Indian shoppers to save smarter."
|
||||
|
||||
@@ -140,7 +140,7 @@ export default function ContactPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-vibrant-overhead-shot-of-shopping-bags-1773327822490-b5c9a626.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-vibrant-overhead-shot-of-shopping-bags-1773327822490-b5c9a626.png?_wi=4"
|
||||
imageAlt="Shopping and savings background"
|
||||
logoText="PriceMatch"
|
||||
copyrightText="© 2025 PriceMatch. Empowering Indian shoppers to save smarter."
|
||||
|
||||
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Nunito } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "PriceMatch - Compare E-Commerce Prices Across India",
|
||||
description: "Save up to ₹15,000/month by comparing prices from Amazon, Flipkart, Blinkit, Zepto & 10+ platforms instantly with real-time updates and delivery fees included.",
|
||||
keywords: "price comparison, ecommerce, India, Amazon, Flipkart, Blinkit, Zepto, save money, shopping",
|
||||
metadataBase: new URL("https://pricematch.example.com"),
|
||||
alternates: {
|
||||
canonical: "https://pricematch.example.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "PriceMatch - India's #1 Price Comparison Platform",
|
||||
description: "Find the cheapest prices across all major e-commerce platforms. Save thousands on groceries, electronics, fashion & more.",
|
||||
url: "https://pricematch.example.com",
|
||||
siteName: "PriceMatch",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://pricematch.example.com/og-image.jpg",
|
||||
alt: "PriceMatch price comparison dashboard",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "PriceMatch - Smart Price Comparison Tool",
|
||||
description: "Compare prices from Amazon, Flipkart, Blinkit & more. Get real-time alerts when prices drop.",
|
||||
images: ["https://pricematch.example.com/twitter-image.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunito.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -58,7 +58,7 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "fluid" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-modern-price-comparison-dashboard-show-1773327823174-62626362.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-modern-price-comparison-dashboard-show-1773327823174-62626362.png?_wi=1"
|
||||
imageAlt="Price comparison dashboard showing multiple platform prices"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -68,21 +68,21 @@ export default function HomePage() {
|
||||
handle: "Saved ₹15,000/month",
|
||||
testimonial: "Finally found a tool that shows me the real cheapest option. Game changer!",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-professional-headshot-of-a-smiling-ind-1773327822409-3988e503.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-professional-headshot-of-a-smiling-ind-1773327822409-3988e503.png?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "Priya Sharma",
|
||||
handle: "Delhi based shopper",
|
||||
testimonial: "Comparing Blinkit vs Zepto prices is now instant. Love the delivery fee inclusion!",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-professional-headshot-of-a-smiling-ind-1773327822000-a15b4947.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-professional-headshot-of-a-smiling-ind-1773327822000-a15b4947.png?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "Amit Singh",
|
||||
handle: "Regular grocery buyer",
|
||||
testimonial: "The price drop alerts are incredible. I never overpay anymore.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-professional-headshot-of-a-smiling-ind-1773327822072-df569fba.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-professional-headshot-of-a-smiling-ind-1773327822072-df569fba.png?_wi=1",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
@@ -111,42 +111,42 @@ export default function HomePage() {
|
||||
{
|
||||
title: "Real-Time Price Tracking",
|
||||
description: "Live updates from 10+ platforms including Amazon, Flipkart, Blinkit, and Zepto",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-close-up-of-a-smartphone-screen-showin-1773327823973-12fd1912.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-close-up-of-a-smartphone-screen-showin-1773327823973-12fd1912.png?_wi=1",
|
||||
imageAlt: "Real-time price tracking interface",
|
||||
buttonIcon: TrendingDown,
|
||||
},
|
||||
{
|
||||
title: "Instant Price Comparisons",
|
||||
description: "See side-by-side pricing with delivery fees and estimated arrival times included",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-side-by-side-comparison-table-on-a-des-1773327825727-c7451b6e.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-side-by-side-comparison-table-on-a-des-1773327825727-c7451b6e.png?_wi=1",
|
||||
imageAlt: "Side-by-side price comparison view",
|
||||
buttonIcon: BarChart3,
|
||||
},
|
||||
{
|
||||
title: "Location-Based Pricing",
|
||||
description: "Pincode-specific prices because rates vary wildly across Delhi, Bangalore, Mumbai and beyond",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-map-interface-showing-india-with-pins--1773327822753-d2754f4f.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-map-interface-showing-india-with-pins--1773327822753-d2754f4f.png?_wi=1",
|
||||
imageAlt: "Map showing location-based pricing",
|
||||
buttonIcon: MapPin,
|
||||
},
|
||||
{
|
||||
title: "Price Drop Alerts",
|
||||
description: "Get notified instantly when your favorite products drop in price",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-smartphone-notification-showing-a-pric-1773327822607-895cbcfe.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-smartphone-notification-showing-a-pric-1773327822607-895cbcfe.png?_wi=1",
|
||||
imageAlt: "Price alert notification interface",
|
||||
buttonIcon: Bell,
|
||||
},
|
||||
{
|
||||
title: "Category Deep Dives",
|
||||
description: "Groceries, electronics, fashion, and services all compared in dedicated views",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-grid-of-product-category-icons-includi-1773327823363-ebeb3a8f.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-grid-of-product-category-icons-includi-1773327823363-ebeb3a8f.png?_wi=1",
|
||||
imageAlt: "Product category comparison interface",
|
||||
buttonIcon: Grid,
|
||||
},
|
||||
{
|
||||
title: "One-Click Checkout",
|
||||
description: "Direct affiliate links to the cheapest option with no extra steps",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-simplified-checkout-flow-showing-one-c-1773327825024-0f8f808a.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-simplified-checkout-flow-showing-one-c-1773327825024-0f8f808a.png?_wi=1",
|
||||
imageAlt: "One-click checkout flow",
|
||||
buttonIcon: ShoppingCart,
|
||||
},
|
||||
@@ -306,7 +306,7 @@ export default function HomePage() {
|
||||
{/* Footer */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-vibrant-overhead-shot-of-shopping-bags-1773327822490-b5c9a626.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-vibrant-overhead-shot-of-shopping-bags-1773327822490-b5c9a626.png?_wi=1"
|
||||
imageAlt="Shopping and savings background"
|
||||
logoText="PriceMatch"
|
||||
copyrightText="© 2025 PriceMatch. Empowering Indian shoppers to save smarter."
|
||||
|
||||
@@ -83,7 +83,7 @@ export default function PricingPage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "fluid" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-modern-price-comparison-dashboard-show-1773327823174-62626362.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-modern-price-comparison-dashboard-show-1773327823174-62626362.png?_wi=2"
|
||||
imageAlt="Price comparison dashboard showing multiple platform prices"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -93,21 +93,21 @@ export default function PricingPage() {
|
||||
handle: "Saved ₹15,000/month",
|
||||
testimonial: "Finally found a tool that shows me the real cheapest option. Game changer!",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-professional-headshot-of-a-smiling-ind-1773327822409-3988e503.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-professional-headshot-of-a-smiling-ind-1773327822409-3988e503.png?_wi=2",
|
||||
},
|
||||
{
|
||||
name: "Priya Sharma",
|
||||
handle: "Delhi based shopper",
|
||||
testimonial: "Comparing Blinkit vs Zepto prices is now instant. Love the delivery fee inclusion!",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-professional-headshot-of-a-smiling-ind-1773327822000-a15b4947.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-professional-headshot-of-a-smiling-ind-1773327822000-a15b4947.png?_wi=2",
|
||||
},
|
||||
{
|
||||
name: "Amit Singh",
|
||||
handle: "Regular grocery buyer",
|
||||
testimonial: "The price drop alerts are incredible. I never overpay anymore.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-professional-headshot-of-a-smiling-ind-1773327822072-df569fba.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-professional-headshot-of-a-smiling-ind-1773327822072-df569fba.png?_wi=2",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
@@ -129,42 +129,42 @@ export default function PricingPage() {
|
||||
{
|
||||
title: "Real-Time Price Tracking",
|
||||
description: "Live updates from 10+ platforms including Amazon, Flipkart, Blinkit, and Zepto",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-close-up-of-a-smartphone-screen-showin-1773327823973-12fd1912.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-close-up-of-a-smartphone-screen-showin-1773327823973-12fd1912.png?_wi=2",
|
||||
imageAlt: "Real-time price tracking interface",
|
||||
buttonIcon: TrendingDown,
|
||||
},
|
||||
{
|
||||
title: "Instant Price Comparisons",
|
||||
description: "See side-by-side pricing with delivery fees and estimated arrival times included",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-side-by-side-comparison-table-on-a-des-1773327825727-c7451b6e.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-side-by-side-comparison-table-on-a-des-1773327825727-c7451b6e.png?_wi=2",
|
||||
imageAlt: "Side-by-side price comparison view",
|
||||
buttonIcon: BarChart3,
|
||||
},
|
||||
{
|
||||
title: "Location-Based Pricing",
|
||||
description: "Pincode-specific prices because rates vary wildly across Delhi, Bangalore, Mumbai and beyond",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-map-interface-showing-india-with-pins--1773327822753-d2754f4f.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-map-interface-showing-india-with-pins--1773327822753-d2754f4f.png?_wi=2",
|
||||
imageAlt: "Map showing location-based pricing",
|
||||
buttonIcon: MapPin,
|
||||
},
|
||||
{
|
||||
title: "Price Drop Alerts",
|
||||
description: "Get notified instantly when your favorite products drop in price",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-smartphone-notification-showing-a-pric-1773327822607-895cbcfe.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-smartphone-notification-showing-a-pric-1773327822607-895cbcfe.png?_wi=2",
|
||||
imageAlt: "Price alert notification interface",
|
||||
buttonIcon: Bell,
|
||||
},
|
||||
{
|
||||
title: "Category Deep Dives",
|
||||
description: "Groceries, electronics, fashion, and services all compared in dedicated views",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-grid-of-product-category-icons-includi-1773327823363-ebeb3a8f.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-grid-of-product-category-icons-includi-1773327823363-ebeb3a8f.png?_wi=2",
|
||||
imageAlt: "Product category comparison interface",
|
||||
buttonIcon: Grid,
|
||||
},
|
||||
{
|
||||
title: "One-Click Checkout",
|
||||
description: "Direct affiliate links to the cheapest option with no extra steps",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-simplified-checkout-flow-showing-one-c-1773327825024-0f8f808a.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-simplified-checkout-flow-showing-one-c-1773327825024-0f8f808a.png?_wi=2",
|
||||
imageAlt: "One-click checkout flow",
|
||||
buttonIcon: ShoppingCart,
|
||||
},
|
||||
@@ -209,7 +209,7 @@ export default function PricingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-vibrant-overhead-shot-of-shopping-bags-1773327822490-b5c9a626.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqkmeCOj2DrEFyYdtrRqQmsEsb/a-vibrant-overhead-shot-of-shopping-bags-1773327822490-b5c9a626.png?_wi=3"
|
||||
imageAlt="Shopping and savings background"
|
||||
logoText="PriceMatch"
|
||||
copyrightText="© 2025 PriceMatch. Empowering Indian shoppers to save smarter."
|
||||
|
||||
Reference in New Issue
Block a user