Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f06ff6150b | |||
| 4f848fa93e | |||
| 3e016969d6 | |||
| 3e388b25ae | |||
| d693b2fd40 | |||
| 22609ca24d | |||
| 1fd8e59a64 | |||
| afa9c8bc0d |
@@ -1,50 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat, Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const interFont = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "Smell Good - Premium Fragrances", description: "Discover your signature scent with our curated collection of premium colognes and fragrances from around the world."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${montserrat.variable} ${interFont.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1412,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -265,10 +265,10 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactText
|
||||||
text="Ready to elevate your fragrance game? Get in touch with our fragrance experts today for personalized recommendations and exclusive offers."
|
text="Discover your ideal fragrance with a free personalized consultation from our expert team. Our specialists will guide you to find the perfect scent that matches your personality and preferences."
|
||||||
animationType="entrance-slide"
|
animationType="entrance-slide"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Contact Us", href: "#" },
|
{ text: "Book Consultation", href: "#" },
|
||||||
{ text: "Shop Collection", href: "#products" },
|
{ text: "Shop Collection", href: "#products" },
|
||||||
]}
|
]}
|
||||||
background={{ variant: "sparkles-gradient" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
|
|||||||
Reference in New Issue
Block a user