5 Commits

Author SHA1 Message Date
3e388b25ae Update src/app/page.tsx 2026-03-07 06:09:52 +00:00
d693b2fd40 Update src/app/layout.tsx 2026-03-07 06:09:52 +00:00
22609ca24d Merge version_1 into main
Merge version_1 into main
2026-03-07 06:08:05 +00:00
1fd8e59a64 Merge version_1 into main
Merge version_1 into main
2026-03-07 06:07:20 +00:00
afa9c8bc0d Merge version_1 into main
Merge version_1 into main
2026-03-07 06:06:05 +00:00
2 changed files with 9 additions and 40 deletions

View File

@@ -1,50 +1,20 @@
import type { Metadata } from "next";
import { Montserrat, Inter } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const interFont = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Smell Good | Premium Colognes & Fragrances", description: "Discover premium colognes and fragrances at Smell Good. Luxury scents for every occasion. Free samples, worldwide shipping, and 30-day satisfaction guarantee.", keywords: "cologne, fragrance, perfume, luxury scents, men's cologne, women's perfume, designer fragrances", metadataBase: new URL("https://smellgood.com"),
alternates: {
canonical: "https://smellgood.com"},
openGraph: {
title: "Smell Good | Premium Colognes & Fragrances", description: "Discover premium colognes and fragrances. Luxury scents, worldwide shipping, and expert recommendations.", url: "https://smellgood.com", siteName: "Smell Good", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/queen-crown-still-life_23-2150409249.jpg", alt: "Smell Good Premium Fragrance Collection"},
],
},
twitter: {
card: "summary_large_image", title: "Smell Good | Premium Colognes & Fragrances", description: "Discover luxury fragrances and colognes. Find your signature scent today.", images: ["http://img.b2bpic.net/free-photo/queen-crown-still-life_23-2150409249.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Smell Good - Premium Fragrances", description: "Discover your signature scent with our curated collection of premium colognes and fragrances from around the world."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${montserrat.variable} ${interFont.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1412,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -265,10 +265,10 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactText
text="Ready to elevate your fragrance game? Get in touch with our fragrance experts today for personalized recommendations and exclusive offers."
text="Get a free personalized fragrance consultation with our expert team to discover your perfect scent match today."
animationType="entrance-slide"
buttons={[
{ text: "Contact Us", href: "#" },
{ text: "Book Consultation", href: "#" },
{ text: "Shop Collection", href: "#products" },
]}
background={{ variant: "sparkles-gradient" }}