Yeni Proje Kodları
This commit is contained in:
63
components/layout/footer.tsx
Normal file
63
components/layout/footer.tsx
Normal file
@@ -0,0 +1,63 @@
|
||||
import Link from "next/link"
|
||||
|
||||
export function Footer() {
|
||||
return (
|
||||
<footer className="w-full border-t bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60 py-12 md:py-24 lg:py-32">
|
||||
<div className="container grid gap-8 px-4 md:px-6 lg:grid-cols-4">
|
||||
<div className="flex flex-col gap-2">
|
||||
<Link href="/" className="flex items-center gap-2">
|
||||
<span className="text-xl font-bold tracking-tighter">PARAKASA</span>
|
||||
</Link>
|
||||
<p className="text-sm text-muted-foreground">
|
||||
Yüksek güvenlikli çelik kasa ve para sayma sistemleri için güvenilir çözüm ortağınız.
|
||||
</p>
|
||||
</div>
|
||||
<div className="flex flex-col gap-2">
|
||||
<h3 className="font-semibold">Ürünler</h3>
|
||||
<Link href="#" className="text-sm hover:underline underline-offset-4">
|
||||
Ev Tipi Kasalar
|
||||
</Link>
|
||||
<Link href="#" className="text-sm hover:underline underline-offset-4">
|
||||
Ofis Tipi Kasalar
|
||||
</Link>
|
||||
<Link href="#" className="text-sm hover:underline underline-offset-4">
|
||||
Otel Kasaları
|
||||
</Link>
|
||||
<Link href="#" className="text-sm hover:underline underline-offset-4">
|
||||
Para Sayma Makineleri
|
||||
</Link>
|
||||
</div>
|
||||
<div className="flex flex-col gap-2">
|
||||
<h3 className="font-semibold">Kurumsal</h3>
|
||||
<Link href="#" className="text-sm hover:underline underline-offset-4">
|
||||
Hakkımızda
|
||||
</Link>
|
||||
<Link href="#" className="text-sm hover:underline underline-offset-4">
|
||||
Referanslar
|
||||
</Link>
|
||||
<Link href="#" className="text-sm hover:underline underline-offset-4">
|
||||
Bayilik Başvurusu
|
||||
</Link>
|
||||
<Link href="#" className="text-sm hover:underline underline-offset-4">
|
||||
İletişim
|
||||
</Link>
|
||||
</div>
|
||||
<div className="flex flex-col gap-2">
|
||||
<h3 className="font-semibold">Bize Ulaşın</h3>
|
||||
<p className="text-sm text-muted-foreground">
|
||||
İstanbul, Türkiye
|
||||
</p>
|
||||
<p className="text-sm text-muted-foreground">
|
||||
+90 212 000 00 00
|
||||
</p>
|
||||
<div className="flex gap-4 mt-4">
|
||||
{/* Social Media Icons would go here */}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="container px-4 md:px-6 mt-8 pt-8 border-t text-center text-sm text-muted-foreground">
|
||||
© 2026 ParaKasa. Tüm hakları saklıdır.
|
||||
</div>
|
||||
</footer>
|
||||
)
|
||||
}
|
||||
87
components/layout/navbar.tsx
Normal file
87
components/layout/navbar.tsx
Normal file
@@ -0,0 +1,87 @@
|
||||
import Link from "next/link"
|
||||
import { Search, Menu, Phone } from "lucide-react"
|
||||
import { Button } from "@/components/ui/button"
|
||||
import { Sheet, SheetContent, SheetTrigger } from "@/components/ui/sheet"
|
||||
import { Input } from "@/components/ui/input"
|
||||
|
||||
export function Navbar() {
|
||||
return (
|
||||
<header className="sticky top-0 z-50 w-full border-b bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60">
|
||||
<div className="container flex h-16 items-center">
|
||||
<div className="mr-8 hidden md:flex">
|
||||
<Link href="/" className="mr-6 flex items-center space-x-2">
|
||||
<span className="text-xl font-bold tracking-tighter bg-clip-text text-transparent bg-gradient-to-r from-slate-900 to-slate-500 dark:from-slate-100 dark:to-slate-400">
|
||||
PARAKASA
|
||||
</span>
|
||||
</Link>
|
||||
<nav className="flex items-center space-x-6 text-sm font-medium">
|
||||
<Link
|
||||
href="/products"
|
||||
className="transition-colors hover:text-foreground/80 text-foreground/60"
|
||||
>
|
||||
Ürünler
|
||||
</Link>
|
||||
<Link
|
||||
href="/corporate"
|
||||
className="transition-colors hover:text-foreground/80 text-foreground/60"
|
||||
>
|
||||
Kurumsal
|
||||
</Link>
|
||||
<Link
|
||||
href="/contact"
|
||||
className="transition-colors hover:text-foreground/80 text-foreground/60"
|
||||
>
|
||||
İletişim
|
||||
</Link>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
{/* Mobile Menu */}
|
||||
<Sheet>
|
||||
<SheetTrigger asChild>
|
||||
<Button
|
||||
variant="ghost"
|
||||
className="mr-2 px-0 text-base hover:bg-transparent focus-visible:bg-transparent focus-visible:ring-0 focus-visible:ring-offset-0 md:hidden"
|
||||
>
|
||||
<Menu className="h-5 w-5" />
|
||||
<span className="sr-only">Toggle Menu</span>
|
||||
</Button>
|
||||
</SheetTrigger>
|
||||
<SheetContent side="left" className="pr-0">
|
||||
<Link href="/" className="flex items-center">
|
||||
<span className="font-bold">PARAKASA</span>
|
||||
</Link>
|
||||
<div className="flex flex-col gap-4 mt-8">
|
||||
<Link href="/products">Ürünler</Link>
|
||||
<Link href="/corporate">Kurumsal</Link>
|
||||
<Link href="/contact">İletişim</Link>
|
||||
</div>
|
||||
</SheetContent>
|
||||
</Sheet>
|
||||
|
||||
<div className="flex flex-1 items-center justify-between space-x-2 md:justify-end">
|
||||
<div className="w-full flex-1 md:w-auto md:flex-none">
|
||||
<div className="relative">
|
||||
<Search className="absolute left-2 top-2.5 h-4 w-4 text-muted-foreground" />
|
||||
<Input
|
||||
placeholder="Ürün ara..."
|
||||
className="pl-8 h-9 md:w-[300px] lg:w-[300px]"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<nav className="flex items-center space-x-2">
|
||||
<Button size="sm" variant="ghost" className="h-9 w-9 px-0" asChild>
|
||||
<Link href="/contact">
|
||||
<Phone className="h-4 w-4" />
|
||||
<span className="sr-only">İletişim</span>
|
||||
</Link>
|
||||
</Button>
|
||||
<Button size="sm" className="hidden md:flex">
|
||||
Teklif Al
|
||||
</Button>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user