Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5704021388 | |||
| c7a360a077 | |||
| d6679131b5 |
@@ -1,17 +1,11 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Garmen Yapı İnşaat", description: "Generated by create next app"};
|
||||
title: "Garmen Yapı İnşaat", description: "Modern inşaat projeleri ve güvenilir yapı hizmetleri"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -19,10 +13,8 @@ export default function RootLayout({
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<html lang="tr">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
@@ -59,7 +59,7 @@ export default function HomePage() {
|
||||
mediaAnimation="blur-reveal"
|
||||
buttons={[
|
||||
{
|
||||
text: "Projelerimizi Keşfedin", href: "/projeler"
|
||||
text: "Projelerimizi İncele", href: "/projeler"
|
||||
},
|
||||
{
|
||||
text: "Bize Ulaşın", href: "/iletisim"
|
||||
@@ -73,7 +73,7 @@ export default function HomePage() {
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardTwo
|
||||
title="Garmen Yapı İnşaat Rakamlarla"
|
||||
description="Deneyim ve başarının ölçüsü – 10+ yıllık sektör öncülüğü"
|
||||
description="Deneyim ve başarının ölçüsü"
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "25+", description: "Tamamlanan Proje"
|
||||
|
||||
Reference in New Issue
Block a user