Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5505ca5c33 |
@@ -1,118 +0,0 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Facebook, Instagram, Twitter } from "lucide-react";
|
||||
|
||||
export default function KayitPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="gradient-radial"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Menü", id: "menu"},
|
||||
{
|
||||
name: "Hakkımızda", id: "about"},
|
||||
{
|
||||
name: "Fiyatlandırma", id: "pricing"},
|
||||
{
|
||||
name: "Referanslar", id: "testimonials"},
|
||||
{
|
||||
name: "Kayıt Ol", id: "/kayit"},
|
||||
{
|
||||
name: "Giriş Yap", id: "/giris"},
|
||||
]}
|
||||
button={{
|
||||
text: "Şimdi Sipariş Ver", href: "/order"}}
|
||||
brandName="Santa Fit Healthy®"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="flex flex-col items-center justify-center min-h-[50vh] py-12 px-4 sm:px-6 lg:px-8">
|
||||
<div className="max-w-md w-full space-y-8 p-10 rounded-lg shadow-lg bg-card text-foreground">
|
||||
<h2 className="mt-6 text-center text-3xl font-extrabold text-foreground">
|
||||
Kayıt Ol
|
||||
</h2>
|
||||
<form className="mt-8 space-y-6" onSubmit={(e) => e.preventDefault()}>
|
||||
<div>
|
||||
<label htmlFor="email-address" className="sr-only">
|
||||
E-posta adresi
|
||||
</label>
|
||||
<input
|
||||
id="email-address"
|
||||
name="email"
|
||||
type="email"
|
||||
autoComplete="email"
|
||||
required
|
||||
className="appearance-none rounded-md relative block w-full px-3 py-2 border border-gray-300 placeholder-gray-500 text-gray-900 focus:outline-none focus:ring-primary-cta focus:border-primary-cta focus:z-10 sm:text-sm"
|
||||
placeholder="E-posta adresi"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<label htmlFor="password" className="sr-only">
|
||||
Şifre
|
||||
</label>
|
||||
<input
|
||||
id="password"
|
||||
name="password"
|
||||
type="password"
|
||||
autoComplete="new-password"
|
||||
required
|
||||
className="appearance-none rounded-md relative block w-full px-3 py-2 border border-gray-300 placeholder-gray-500 text-gray-900 focus:outline-none focus:ring-primary-cta focus:border-primary-cta focus:z-10 sm:text-sm"
|
||||
placeholder="Şifre"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<button
|
||||
type="submit"
|
||||
className="group relative w-full flex justify-center py-2 px-4 border border-transparent text-sm font-medium rounded-md text-primary-cta-text bg-primary-cta hover:bg-primary-cta-hover focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-cta"
|
||||
>
|
||||
Kayıt Ol
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
<div className="text-center text-sm text-foreground">
|
||||
Zaten hesabınız var mı?{" "}
|
||||
<a href="/giris" className="font-medium text-primary-cta hover:text-primary-cta-hover">
|
||||
Giriş Yap
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Santa Fit Healthy®"
|
||||
copyrightText="© 2024 Santa Fit Healthy®. Tüm hakları saklıdır."
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com/santafithealthy", ariaLabel: "Facebook"},
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com/santafithealthy", ariaLabel: "Instagram"},
|
||||
{
|
||||
icon: Twitter,
|
||||
href: "https://twitter.com/santafithealthy", ariaLabel: "Twitter"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -10,7 +10,7 @@ import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import { BarChart, Droplet, Facebook, Flame, Instagram, Mail, Scale, Shield, Sparkles, Twitter, Zap } from "lucide-react";
|
||||
@@ -33,18 +33,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Menü", id: "menu"},
|
||||
{
|
||||
name: "Hakkımızda", id: "about"},
|
||||
{
|
||||
name: "Fiyatlandırma", id: "pricing"},
|
||||
{
|
||||
name: "Referanslar", id: "testimonials"},
|
||||
{
|
||||
name: "Kayıt Ol", id: "/kayit"},
|
||||
{
|
||||
name: "Giriş Yap", id: "/giris"},
|
||||
{ name: "Ana Sayfa", id: "/" },
|
||||
{ name: "Menü", id: "/menu" },
|
||||
{ name: "Hakkımızda", id: "/#about" },
|
||||
{ name: "Fiyatlandırma", id: "/#pricing" },
|
||||
{ name: "Referanslar", id: "/#testimonials" },
|
||||
{ name: "Kayıt Ol", id: "/register" },
|
||||
{ name: "Giriş Yap", id: "/login" }
|
||||
]}
|
||||
button={{
|
||||
text: "Şimdi Sipariş Ver", href: "/order"}}
|
||||
@@ -121,30 +116,7 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "meal-1", brand: "Santa Fit Healthy®", name: "Grilled Chicken & Quinoa Feast", price: "$12.99", rating: 5,
|
||||
reviewCount: "245", imageSrc: "http://img.b2bpic.net/free-photo/chicken-salad_23-2148115089.jpg", imageAlt: "Grilled chicken with quinoa and vegetables"},
|
||||
{
|
||||
id: "meal-2", brand: "Santa Fit Healthy®", name: "Salmon & Asparagus Medley", price: "$14.99", rating: 5,
|
||||
reviewCount: "198", imageSrc: "http://img.b2bpic.net/free-photo/top-view-nutrition-food-meal-planning_23-2149074217.jpg", imageAlt: "Pan-seared salmon with asparagus"},
|
||||
{
|
||||
id: "meal-3", brand: "Santa Fit Healthy®", name: "Lean Beef Stir-fry Bowl", price: "$13.49", rating: 5,
|
||||
reviewCount: "310", imageSrc: "http://img.b2bpic.net/free-photo/side-view-from-afar-appetizing-dish-appetizing-dish-green-beans-with-tomatoes-left-side-dark-table_140725-123102.jpg", imageAlt: "Beef stir-fry with mixed vegetables and brown rice"},
|
||||
{
|
||||
id: "meal-4", brand: "Santa Fit Healthy®", name: "Spicy Vegan Chickpea Curry", price: "$11.99", rating: 4,
|
||||
reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/healthy-salad-ingredients-plastic-container_23-2147953647.jpg", imageAlt: "Vegan chickpea curry with rice"},
|
||||
]}
|
||||
title="Our Signature Performance Meals"
|
||||
description="Explore our chef-curated menu designed for peak performance and delicious, guilt-free indulgence. Each meal is crafted with high-quality ingredients and precise macro-nutrient ratios."
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardTwo
|
||||
|
||||
Reference in New Issue
Block a user