Merge version_2 into main #4
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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" }}
|
||||
|
||||
Reference in New Issue
Block a user