Merge version_2 into main #6

Merged
bender merged 2 commits from version_2 into main 2026-03-05 12:59:26 +00:00
2 changed files with 9 additions and 65 deletions

View File

@@ -1,75 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } 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 poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Alignra | Premium Lifestyle & Comfort Products",
description: "Discover Alignra's premium collection of innovative lifestyle products designed for comfort and modern living. Shop luxury goods with fast shipping and 30-day guarantee.",
keywords: "premium products, luxury lifestyle, comfort items, high-quality goods, innovative design",
metadataBase: new URL("https://alignra.com"),
alternates: {
canonical: "https://alignra.com",
},
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Alignra | Premium Lifestyle Products",
description: "Innovative products designed to improve your lifestyle and daily performance.",
url: "https://alignra.com",
siteName: "Alignra",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/composition-natural-argan-seeds_23-2149016622.jpg",
alt: "Alignra Premium Products",
},
],
},
twitter: {
card: "summary_large_image",
title: "Alignra | Premium Lifestyle Products",
description: "Shop innovative premium products for modern living.",
images: ["http://img.b2bpic.net/free-photo/composition-natural-argan-seeds_23-2149016622.jpg"],
},
};
title: "Alignra - Premium Lifestyle Products", description: "Discover innovative products designed to improve your lifestyle and daily performance. Experience luxury, quality, and sophistication."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1437,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -225,7 +225,7 @@ export default function HomePage() {
plans={[
{
id: "offer1", badge: "Exclusive Deal", badgeIcon: Sparkles,
price: "SAVE 20%", subtitle: "Use code SAVE20 at checkout", buttons: [
price: "SAVE 20%", subtitle: "48 hours remaining - Limited stock available", buttons: [
{ text: "Claim Your Discount", href: "/shop" },
{ text: "Learn More", href: "#faq" },
],
@@ -419,4 +419,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}