Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9041520cd9 | |||
| 7b309f0572 | |||
| 6613ebcbe6 | |||
| e09c7a9341 | |||
| d8aa1bd625 |
@@ -1,32 +1,24 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Poppins } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Archivo } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const halant = Halant({
|
const poppins = Poppins({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-poppins", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const archivo = Archivo({
|
|
||||||
variable: "--font-archivo", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "MyLeo - Premium Fashion Watches | Luxury Timepieces", description: "Discover MyLeo's collection of luxury fashion watches. Elegantly designed timepieces combining Swiss-inspired precision with contemporary style.", keywords: "luxury watches, fashion timepieces, premium watches, elegant watch design, Swiss watch, designer watch", metadataBase: new URL("https://myleo-watches.com"),
|
title: "MyLeo - Premium Fashion Watches | Luxury Timepieces", description: "Discover MyLeo's collection of luxury fashion watches. Elegantly designed timepieces combining Swiss-inspired precision with contemporary style.", keywords: "luxury watches, fashion timepieces, premium watches, elegant watch design, Swiss watch, designer watch", metadataBase: new URL("https://myleo-watches.com"),
|
||||||
alternates: {
|
alternates: {
|
||||||
canonical: "https://myleo-watches.com"},
|
canonical: "https://myleo-watches.com"
|
||||||
|
},
|
||||||
openGraph: {
|
openGraph: {
|
||||||
title: "MyLeo - Premium Fashion Watches", description: "Luxury timepieces that blend sophistication with innovation. Explore our curated collection.", type: "website", siteName: "MyLeo", images: [
|
title: "MyLeo - Premium Fashion Watches", description: "Luxury timepieces that blend sophistication with innovation. Explore our curated collection.", type: "website", siteName: "MyLeo", images: [
|
||||||
{
|
{
|
||||||
url: "http://img.b2bpic.net/free-vector/watch-background-design_1268-652.jpg", alt: "MyLeo Premium Fashion Watch Collection"},
|
url: "http://img.b2bpic.net/free-vector/watch-background-design_1268-652.jpg", alt: "MyLeo Premium Fashion Watch Collection"
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
twitter: {
|
twitter: {
|
||||||
@@ -46,9 +38,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body className={`${poppins.variable} antialiased`}>
|
||||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
|
|||||||
@@ -15,16 +15,16 @@ import { Sparkles, Award, Mail } from 'lucide-react';
|
|||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="shift-hover"
|
defaultButtonVariant="text-stagger"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="soft"
|
borderRadius="rounded"
|
||||||
contentWidth="smallMedium"
|
contentWidth="mediumLarge"
|
||||||
sizing="largeSizeMediumTitles"
|
sizing="medium"
|
||||||
background="none"
|
background="noise"
|
||||||
cardStyle="layered-gradient"
|
cardStyle="solid"
|
||||||
primaryButtonStyle="radial-glow"
|
primaryButtonStyle="flat"
|
||||||
secondaryButtonStyle="layered"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="normal"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-archivo), sans-serif;
|
font-family: var(--font-poppins), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-archivo), sans-serif;
|
font-family: var(--font-poppins), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,21 +4,21 @@
|
|||||||
|
|
||||||
/* --background: #ffffff;;
|
/* --background: #ffffff;;
|
||||||
--card: #f9f9f9;;
|
--card: #f9f9f9;;
|
||||||
--foreground: #000f06e6;;
|
--foreground: #1a1a1a;;
|
||||||
--primary-cta: #0a7039;;
|
--primary-cta: #ff6b35;;
|
||||||
--secondary-cta: #f9f9f9;;
|
--secondary-cta: #f9f9f9;;
|
||||||
--accent: #e2e2e2;;
|
--accent: #ffd60a;;
|
||||||
--background-accent: #c4c4c4;; */
|
--background-accent: #ffb703;; */
|
||||||
|
|
||||||
--background: #ffffff;;
|
--background: #ffffff;;
|
||||||
--card: #f9f9f9;;
|
--card: #f9f9f9;;
|
||||||
--foreground: #000f06e6;;
|
--foreground: #1a1a1a;;
|
||||||
--primary-cta: #0a7039;;
|
--primary-cta: #ff6b35;;
|
||||||
--primary-cta-text: #ffffff;;
|
--primary-cta-text: #ffffff;;
|
||||||
--secondary-cta: #f9f9f9;;
|
--secondary-cta: #f9f9f9;;
|
||||||
--secondary-cta-text: #000f06e6;;
|
--secondary-cta-text: #000f06e6;;
|
||||||
--accent: #e2e2e2;;
|
--accent: #ffd60a;;
|
||||||
--background-accent: #c4c4c4;;
|
--background-accent: #ffb703;;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user