6 Commits

Author SHA1 Message Date
5849b7e287 Update src/app/page.tsx 2026-03-05 18:01:55 +00:00
41978a64c5 Update src/app/page.tsx 2026-03-05 18:00:58 +00:00
510c86610e Update src/app/layout.tsx 2026-03-05 18:00:58 +00:00
b07f160c05 Merge version_1 into main
Merge version_1 into main
2026-03-05 16:20:15 +00:00
b35671c2ea Merge version_1 into main
Merge version_1 into main
2026-03-05 16:19:15 +00:00
633b75c7e7 Merge version_1 into main
Merge version_1 into main
2026-03-05 16:17:56 +00:00
2 changed files with 18 additions and 44 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "OurVibeStore - Daily Use Products & Essentials", description: "Shop quality daily use products, home essentials, and lifestyle items. Free shipping on orders over $50. 30-day returns. Trusted by millions.", keywords: "daily use products, home essentials, lifestyle items, shopping, quality products", robots: {
index: true,
follow: true,
},
openGraph: {
title: "OurVibeStore - Your Daily Essentials Destination", description: "Discover curated daily use products for home, personal care, and lifestyle. Fast shipping, quality guaranteed.", url: "https://ourvibe.store", siteName: "OurVibeStore", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/online-workshop-demontration-beauty-products_259150-60056.jpg", alt: "OurVibeStore Featured Products"},
],
},
twitter: {
card: "summary_large_image", title: "OurVibeStore - Daily Essentials", description: "Shop quality products for everyday living", images: ["http://img.b2bpic.net/free-photo/online-workshop-demontration-beauty-products_259150-60056.jpg"],
},
};
title: "OurVibeStore - Daily Essentials", description: "Shop quality products designed for everyday living. From home essentials to personal care, find everything you need all in one place."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -52,8 +52,8 @@ export default function LandingPage() {
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/online-workshop-demontration-beauty-products_259150-60056.jpg", imageAlt: "Daily use products showcase" },
{ imageSrc: "http://img.b2bpic.net/free-photo/front-view-ecological-zero-waster-concept_23-2148591722.jpg?_wi=1", imageAlt: "Essential everyday items" },
{ imageSrc: "http://img.b2bpic.net/free-photo/eco-cleaning-products-skincare_23-2148811629.jpg", imageAlt: "Quality product collection" },
{ imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-drinking-coffee_52683-119034.jpg", imageAlt: "Modern lifestyle products" }
{ imageSrc: "http://img.b2bpic.net/free-photo/eco-cleaning-products-skincare_23-2148811629.jpg?_wi=1", imageAlt: "Quality product collection" },
{ imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-drinking-coffee_52683-119034.jpg?_wi=1", imageAlt: "Modern lifestyle products" }
]}
mediaAnimation="slide-up"
buttons={[
@@ -80,6 +80,15 @@ export default function LandingPage() {
},
{
id: "prod-3", name: "Multi-Use Lifestyle Kit", price: "$34.99", imageSrc: "http://img.b2bpic.net/free-photo/summer-spring-break-holiday-vacation-leisure-concept_53876-31829.jpg", imageAlt: "Multi-use lifestyle kit", initialQuantity: 1
},
{
id: "prod-4", name: "Eco-Friendly Cleaning Bundle", price: "$19.99", imageSrc: "http://img.b2bpic.net/free-photo/eco-cleaning-products-skincare_23-2148811629.jpg?_wi=2", imageAlt: "Eco-friendly cleaning bundle", initialQuantity: 1
},
{
id: "prod-5", name: "Wellness Essentials Pack", price: "$44.99", imageSrc: "http://img.b2bpic.net/free-photo/front-view-ecological-zero-waster-concept_23-2148591722.jpg?_wi=1", imageAlt: "Wellness essentials pack", initialQuantity: 1
},
{
id: "prod-6", name: "Smart Storage Solutions", price: "$39.99", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-drinking-coffee_52683-119034.jpg?_wi=2", imageAlt: "Smart storage solutions", initialQuantity: 1
}
]}
gridVariant="uniform-all-items-equal"
@@ -244,4 +253,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}