Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 11:55:22 +00:00
2 changed files with 16 additions and 41 deletions

View File

@@ -1,55 +1,28 @@
import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Righteous Living | Ethical, Sustainable Fashion", description: "Premium ethical clothing for conscious consumers. 100% sustainable materials, fair trade certified, and expertly crafted. Shop Righteous Living today.", keywords: "sustainable fashion, ethical clothing, eco-friendly apparel, conscious living, fair trade fashion", openGraph: {
title: "Righteous Living | Ethical Fashion Brand", description: "Wear your values. Discover premium, sustainable clothing that reflects your commitment to conscious living.", type: "website", siteName: "Righteous Living", images: [
{
url: "http://img.b2bpic.net/free-photo/close-up-woman-holding-man-arm_23-2148243259.jpg", alt: "Righteous Living Collection"
}
]
},
twitter: {
card: "summary_large_image", title: "Righteous Living | Ethical Fashion", description: "Premium sustainable clothing for the conscious consumer.", images: ["http://img.b2bpic.net/free-photo/close-up-woman-holding-man-arm_23-2148243259.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -74,7 +74,10 @@ export default function LandingPage() {
tag="New Arrivals"
tagIcon={Star}
tagAnimation="slide-up"
buttons={[{ text: "View All", href: "#" }]}
buttons={[
{ text: "Shop Now", href: "#" },
{ text: "Learn More", href: "#" }
]}
buttonAnimation="slide-up"
textboxLayout="default"
animationType="slide-up"