3 Commits

Author SHA1 Message Date
828ce31bfb Update src/app/page.tsx 2026-03-05 04:56:24 +00:00
0ae575adb2 Update src/app/layout.tsx 2026-03-05 04:56:23 +00:00
666b9751eb Merge version_2 into main
Merge version_2 into main
2026-03-05 04:54:46 +00:00
2 changed files with 19 additions and 16 deletions

View File

@@ -1,8 +1,11 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "BeautyGlow - Premium Skincare Products", description: "Discover premium beauty care products for every skin type. Cruelty-free, natural ingredients, dermatologist tested."};
title: "BeautyGlow - Premium Beauty Care Products", description: "Discover our carefully curated collection of skincare essentials designed to transform your beauty routine."};
export default function RootLayout({
children,
@@ -11,7 +14,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body>{children}
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -36,7 +36,7 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" },
]}
button={{
text: "Shop Now", href: "https://krygno.myshopify.com"
text: "Shop Now", href: "https://your-shopify-store.myshopify.com"
}}
/>
</div>
@@ -57,7 +57,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
buttons={[
{
text: "Shop Collection", href: "https://krygno.myshopify.com"
text: "Shop Now & Save 15%", href: "https://your-shopify-store.myshopify.com"
},
{ text: "Learn More", href: "#about" },
]}
@@ -78,7 +78,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
buttons={[
{
text: "View All Products", href: "https://krygno.myshopify.com/collections"
text: "View All Products", href: "https://your-shopify-store.myshopify.com/collections"
},
]}
buttonAnimation="slide-up"
@@ -127,7 +127,7 @@ export default function LandingPage() {
id: 1,
tag: "Step 1", title: "Cleanse & Prep", subtitle: "Start with purity", description: "Begin your routine with our gentle cleansing formula that removes impurities without stripping natural oils. Perfect for all skin types, this step prepares your skin for maximum absorption of active ingredients.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-hand-holding-face-cream-container_23-2148213310.jpg?_wi=2", imageAlt: "Cleansing step", buttons: [
{
text: "Shop Cleansers", href: "https://krygno.myshopify.com"
text: "Shop Cleansers", href: "https://your-shopify-store.myshopify.com"
},
],
},
@@ -135,7 +135,7 @@ export default function LandingPage() {
id: 2,
tag: "Step 2", title: "Treat & Nourish", subtitle: "Transform your skin", description: "Apply targeted serums and treatments to address specific concerns. Our concentrated formulas work synergistically to boost hydration, brighten, and revitalize your complexion with visible results.", imageSrc: "http://img.b2bpic.net/free-photo/natural-product-plant-arrangement_23-2148899414.jpg?_wi=2", imageAlt: "Treatment step", buttons: [
{
text: "Explore Serums", href: "https://krygno.myshopify.com"
text: "Explore Serums", href: "https://your-shopify-store.myshopify.com"
},
],
},
@@ -143,7 +143,7 @@ export default function LandingPage() {
id: 3,
tag: "Step 3", title: "Moisturize & Protect", subtitle: "Lock in the magic", description: "Seal in all the goodness with our luxurious moisturizers and protective treatments. This final step ensures your skin stays hydrated, radiant, and protected throughout the day or night.", imageSrc: "http://img.b2bpic.net/free-photo/cosmetologist-applying-mask-face-client-beauty-salon_1303-16765.jpg?_wi=2", imageAlt: "Moisturizing step", buttons: [
{
text: "Shop Moisturizers", href: "https://krygno.myshopify.com"
text: "Shop Moisturizers", href: "https://your-shopify-store.myshopify.com"
},
],
},
@@ -225,23 +225,23 @@ export default function LandingPage() {
{
title: "Shop", items: [
{
label: "All Products", href: "https://krygno.myshopify.com/collections"
label: "All Products", href: "https://your-shopify-store.myshopify.com/collections"
},
{
label: "Best Sellers", href: "https://krygno.myshopify.com/collections/bestsellers"
label: "Best Sellers", href: "https://your-shopify-store.myshopify.com/collections/bestsellers"
},
{
label: "New Arrivals", href: "https://krygno.myshopify.com/collections/new"
label: "New Arrivals", href: "https://your-shopify-store.myshopify.com/collections/new"
},
{
label: "Bundle Deals", href: "https://krygno.myshopify.com/collections/bundles"
label: "Bundle Deals", href: "https://your-shopify-store.myshopify.com/collections/bundles"
},
],
},
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Blog", href: "https://krygno.myshopify.com/blogs" },
{ label: "Blog", href: "https://your-shopify-store.myshopify.com/blogs" },
{ label: "Careers", href: "#" },
{ label: "Contact", href: "#contact" },
],
@@ -249,13 +249,13 @@ export default function LandingPage() {
{
title: "Support", items: [
{
label: "Help Center", href: "https://krygno.myshopify.com/pages/help"
label: "Help Center", href: "https://your-shopify-store.myshopify.com/pages/help"
},
{
label: "Shipping Info", href: "https://krygno.myshopify.com/pages/shipping"
label: "Shipping Info", href: "https://your-shopify-store.myshopify.com/pages/shipping"
},
{
label: "Returns", href: "https://krygno.myshopify.com/pages/returns"
label: "Returns", href: "https://your-shopify-store.myshopify.com/pages/returns"
},
{ label: "Privacy Policy", href: "#" },
],