Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4925a3a5b1 | |||
| f244d6f663 | |||
| 6f0008b9bb |
@@ -1,17 +1,11 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Geist, Geist_Mono } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
|
||||||
const geist = Geist({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-geist-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const geistMono = Geist_Mono({
|
|
||||||
variable: "--font-geist-mono", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -19,10 +13,8 @@ export default function RootLayout({
|
|||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="tr">
|
||||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
<body className={inter.className}>{children}
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
|||||||
import ContactText from "@/components/sections/contact/ContactText";
|
import ContactText from "@/components/sections/contact/ContactText";
|
||||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { Home, Landmark, Building2, Briefcase, Hammer, Users } from "lucide-react";
|
import { Home, Landmark, Building2 } from "lucide-react";
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
return (
|
return (
|
||||||
@@ -59,7 +59,7 @@ export default function HomePage() {
|
|||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="blur-reveal"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Projelerimizi Keşfedin", href: "/projeler"
|
text: "Projelerimizi İncele", href: "/projeler"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Bize Ulaşın", href: "/iletisim"
|
text: "Bize Ulaşın", href: "/iletisim"
|
||||||
@@ -73,7 +73,7 @@ export default function HomePage() {
|
|||||||
<div id="metrics" data-section="metrics">
|
<div id="metrics" data-section="metrics">
|
||||||
<MetricCardTwo
|
<MetricCardTwo
|
||||||
title="Garmen Yapı İnşaat Rakamlarla"
|
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={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1", value: "25+", description: "Tamamlanan Proje"
|
id: "1", value: "25+", description: "Tamamlanan Proje"
|
||||||
@@ -113,10 +113,10 @@ export default function HomePage() {
|
|||||||
title: "Konut Projeleri", description: "Modern mimari ve yüksek kalite standartlarıyla hazırlanan konut projeleri", icon: Home,
|
title: "Konut Projeleri", description: "Modern mimari ve yüksek kalite standartlarıyla hazırlanan konut projeleri", icon: Home,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Mühendislik Altyapısı", description: "Sağlam mühendislik çözümleri ve teknik uzmanlık", icon: Briefcase,
|
title: "Mühendislik Altyapısı", description: "Sağlam mühendislik çözümleri ve teknik uzmanlık"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Müşteri Memnuniyeti", description: "Profesyonel kadro ile zamanında ve eksiksiz proje tamamlanması", icon: Users,
|
title: "Müşteri Memnuniyeti", description: "Profesyonel kadro ile zamanında ve eksiksiz proje tamamlanması"
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
@@ -249,10 +249,10 @@ export default function HomePage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Email Gönder", href: "mailto:info@garmen.com.tr"
|
text: "Teklif Al", href: "mailto:info@garmen.com.tr"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Telefon Ara", href: "tel:+905xx-xxx-xxxx"
|
text: "Danışman Ara", href: "tel:+905xx-xxx-xxxx"
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user