13 Commits

Author SHA1 Message Date
b761b91a4f Update src/app/page.tsx 2026-03-05 23:27:24 +00:00
9549535778 Update src/app/layout.tsx 2026-03-05 23:27:24 +00:00
12af2321b1 Switch to version 1: modified src/app/styles/variables.css 2026-03-03 22:44:54 +00:00
1935663f00 Switch to version 1: modified src/app/page.tsx 2026-03-03 22:44:53 +00:00
e7efde0c3d Switch to version 1: modified src/app/layout.tsx 2026-03-03 22:44:53 +00:00
45c5427fb9 Merge version_2 into main
Merge version_2 into main
2026-03-03 22:44:33 +00:00
893c5cf54e Update theme colors 2026-03-03 22:44:27 +00:00
bf3b8ba3d5 Merge version_2 into main
Merge version_2 into main
2026-03-03 22:38:06 +00:00
7f60c59d5f Update src/app/page.tsx 2026-03-03 22:38:02 +00:00
da5af1f4e8 Update src/app/layout.tsx 2026-03-03 22:38:01 +00:00
c4d3fedf52 Merge version_1 into main
Merge version_1 into main
2026-03-03 22:32:49 +00:00
9d21f8f579 Merge version_1 into main
Merge version_1 into main
2026-03-03 22:31:38 +00:00
4a54438da0 Merge version_1 into main
Merge version_1 into main
2026-03-03 22:29:55 +00:00
2 changed files with 9 additions and 53 deletions

View File

@@ -1,64 +1,21 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-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 inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "HANGOVER - Bold Streetwear Fashion | Cash on Delivery", description: "Premium streetwear brand HANGOVER offers authentic jeans, hoodies, t-shirts & accessories. Shop now with Cash on Delivery in Morocco. Fast shipping, quality guaranteed.", keywords: "streetwear, clothing brand, jeans, hoodies, t-shirts, Morocco, cash on delivery, fashion", metadataBase: new URL("https://hangover.store"),
alternates: {
canonical: "https://hangover.store"
},
openGraph: {
title: "HANGOVER - Bold Streetwear Fashion", description: "Premium streetwear designed for those who live fearlessly.", url: "https://hangover.store", siteName: "HANGOVER", type: "website", images: [
{
url: "https://hangover.store/og-image.jpg", alt: "HANGOVER Streetwear Collection"
}
]
},
twitter: {
card: "summary_large_image", title: "HANGOVER - Bold Streetwear Fashion", description: "Premium streetwear designed for those who live fearlessly.", images: ["https://hangover.store/twitter-image.jpg"]
},
robots: {
index: true,
follow: true
}
title: "HANGOVER - Bold Streetwear for the Fearless", description: "Premium quality streetwear designed for those who live fearlessly. Shop authentic styles with Cash on Delivery in Morocco."
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1426,7 +1383,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -8,7 +8,7 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar
import FaqBase from '@/components/sections/faq/FaqBase';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Mail, Package, Sparkles, Star, HelpCircle } from "lucide-react";
import { Mail, Package, Sparkles, Star, HelpCircle, CheckCircle } from "lucide-react";
export default function LandingPage() {
return (
@@ -64,7 +64,7 @@ export default function LandingPage() {
<div id="products" data-section="products">
<ProductCardFour
title="Featured Products"
description="Curated selection of our most popular pieces. Limited quantities available."
description="★★★★★ 2,000+ 5-star reviews. Trusted by streetwear enthusiasts across Morocco. Curated selection of our most popular pieces. Limited quantities available."
tag="New Arrivals"
tagIcon={Sparkles}
textboxLayout="default"
@@ -123,7 +123,7 @@ export default function LandingPage() {
title="What Our Customers Say"
description="Real reviews from HANGOVER community members."
tag="Reviews"
tagIcon={Star}
tagIcon={CheckCircle}
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"