Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9e49478273 | |||
| fba021c3d7 | |||
| 9705818022 |
@@ -1,8 +1,14 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import "./globals.css";
|
import "@/styles/globals.css";
|
||||||
|
|
||||||
const inter = Inter({ subsets: ["latin"] });
|
const geist = Geist({
|
||||||
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const geist_mono = Geist_Mono({
|
||||||
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Baker Fırın & Kafe", description: "Fresh Bakery & Premium Coffee in Antalya"};
|
title: "Baker Fırın & Kafe", description: "Fresh Bakery & Premium Coffee in Antalya"};
|
||||||
@@ -14,7 +20,9 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={inter.className}>{children}
|
<body className={`${geist.variable} ${geist_mono.variable} antialiased`}>
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwe
|
|||||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||||
import { Coffee, Sparkles, UtensilsCrossed, MapPin } from 'lucide-react';
|
import { Coffee, Sparkles, UtensilsCrossed, MapPin, Croissant, Wind } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -55,6 +55,16 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
className="py-24 px-6"
|
className="py-24 px-6"
|
||||||
|
marqueeItems={[
|
||||||
|
{ type: "text-icon", text: "İzmir Bombası", icon: Sparkles },
|
||||||
|
{ type: "text-icon", text: "Fresh Croissants", icon: Croissant },
|
||||||
|
{ type: "text-icon", text: "Turkish Coffee", icon: Coffee },
|
||||||
|
{ type: "text-icon", text: "İzmir Bombası", icon: Sparkles },
|
||||||
|
{ type: "text-icon", text: "Fresh Croissants", icon: Croissant },
|
||||||
|
{ type: "text-icon", text: "Turkish Coffee", icon: Coffee }
|
||||||
|
]}
|
||||||
|
marqueeSpeed={30}
|
||||||
|
showMarqueeCard={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -188,8 +198,8 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
showRating={true}
|
showRating={true}
|
||||||
title="What Our Customers Say"
|
title="What Our Customers Say"
|
||||||
description="100+ Five-Star Reviews"
|
description="Join hundreds of satisfied customers who enjoy our premium pastries, fresh coffee, and warm hospitality"
|
||||||
tag="Customer Favorites"
|
tag="Reviews"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -201,13 +211,7 @@ export default function LandingPage() {
|
|||||||
tag="Visit Us"
|
tag="Visit Us"
|
||||||
tagIcon={MapPin}
|
tagIcon={MapPin}
|
||||||
title="Find Us in Antalya"
|
title="Find Us in Antalya"
|
||||||
description="Ermenek, Rauf Denktaş Cd No:70, 00700 Muratpaşa / Antalya, Turkey
|
description="Ermenek, Rauf Denktaş Cd No:70, 00700 Muratpaşa / Antalya, Turkey\n\nPhone: 0541 348 80 13\nOpen 24 Hours\n\nWheelchair Accessible Entrance\nFree Street Parking Available"
|
||||||
|
|
||||||
Phone: 0541 348 80 13
|
|
||||||
Open 24 Hours
|
|
||||||
|
|
||||||
Wheelchair Accessible Entrance
|
|
||||||
Free Street Parking Available"
|
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
inputPlaceholder="Get directions"
|
inputPlaceholder="Get directions"
|
||||||
|
|||||||
Reference in New Issue
Block a user