diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 65a9130..6972312 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,27 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Nunito } from "next/font/google";
+import "./styles/variables.css";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
-const nunito = Nunito({
- variable: "--font-nunito", subsets: ["latin"],
-});
-
export const metadata: Metadata = {
- title: "Yanis | Création de sites web modernes", description: "Création de sites web professionnels pour petits business et entrepreneurs. Design moderne, responsive et livraison rapide.", keywords: "web design, création site web, freelance, développeur web, petit business, startup, design responsive", openGraph: {
- title: "Yanis | Création de sites web modernes", description: "Je crée des sites web modernes et efficaces pour les petits business", siteName: "Yanis", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/minimalist-workspace-with-laptop-coffee-plants_9975-24294.jpg", alt: "Yanis portfolio"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Yanis | Création de sites web modernes", description: "Sites web professionnels pour votre business", images: ["http://img.b2bpic.net/free-photo/minimalist-workspace-with-laptop-coffee-plants_9975-24294.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Yanis Dev - Création de sites web modernes", description: "Je crée des sites web modernes et efficaces pour les petits business"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+
+
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index edd2bb7..690c925 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -10,9 +10,13 @@ import BlogCardOne from "@/components/sections/blog/BlogCardOne";
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterSimple from "@/components/sections/footer/FooterSimple";
-import { CheckCircle, Palette, Smartphone, Zap, Rocket } from "lucide-react";
+import { CheckCircle, Palette, Smartphone, Zap, Rocket, Mail } from "lucide-react";
export default function LandingPage() {
+ const handleEmailClick = () => {
+ window.location.href = "mailto:contact@yanisdev.com";
+ };
+
return (