+
@@ -153,27 +141,24 @@ export default function AboutPage() {
{
+ e.preventDefault();
+ if (email && password) {
+ setIsLoggedIn(true);
+ }
+ };
+
+ const handleLogout = () => {
+ setIsLoggedIn(false);
+ setEmail("");
+ setPassword("");
+ };
+
+ return (
+
+
+
+
+
+ {!isLoggedIn ? (
+ <>
+ {/* Login Hero Section */}
+
+
+
+ {/* Header */}
+
+
+
+
+
Klientská zóna
+
Přihlaste se k přístupu na vaše projekty
+
+
+ {/* Login Form */}
+
+
+ {/* Footer */}
+
+
+
+
+ >
+ ) : (
+ <>
+ {/* Dashboard Section */}
+
+
+ {/* Welcome Header */}
+
+
+
Vítejte zpět!
+
+
+
Přehled vašich projektů a dokumentů
+
+
+
+ {/* Project Cards */}
+ {[
+ {
+ id: "1", title: "E-Commerce Platforma", status: "V provozu", date: "Spuštěno: 15. března 2024", icon: FileText,
+ },
+ {
+ id: "2", title: "Mobilní Aplikace", status: "V provozu", date: "Spuštěno: 22. dubna 2024", icon: FileText,
+ },
+ {
+ id: "3", title: "SaaS Řešení", status: "Vývoj", date: "Zahájeno: 1. ledna 2025", icon: FileText,
+ },
+ ].map((project) => (
+
+
+
+
+ {project.status}
+
+
+
+ {project.title}
+
+
{project.date}
+
+
+ ))}
+
+
+ {/* Quick Links Section */}
+
+
+
+
+
Ke stažení
+
+
Projekte a dokumenty k dispozici pro stažení
+
+
+
+
+
+
+
Nastavení účtu
+
+
Spravujte svůj profil a preferenze
+
+
+
+
+
+ >
+ )}
+
+ {/* Contact CTA Section */}
+
+ console.log("Support request from:", email)}
+ />
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index 4083119..8462718 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -1,13 +1,11 @@
"use client";
-import Link from "next/link";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
+import HeroOverlay from "@/components/sections/hero/HeroOverlay";
import ContactSplit from "@/components/sections/contact/ContactSplit";
-import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
-import SplitAbout from "@/components/sections/about/SplitAbout";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import { Mail, Phone, MapPin, MessageCircle, Clock, Zap } from "lucide-react";
+import { Mail, Phone, MapPin } from "lucide-react";
export default function ContactPage() {
return (
@@ -28,77 +26,51 @@ export default function ContactPage() {
brandName="Webuild"
navItems={[
{ name: "Projekty", id: "projects" },
- { name: "O nás", id: "about" },
+ { name: "O nás", id: "/about" },
{ name: "Klientská zóna", id: "clientzone" },
- { name: "Kontakt", id: "contact" },
+ { name: "Kontakt", id: "/contact" },
]}
button={{
- text: "Začít projekt", href: "contact"}}
+ text: "Začít projekt", href: "/contact"
+ }}
/>
-
-
+
+
+
+
+ console.log("Email submission:", email)}
- />
-
-
-
-
-
-
-
- {
+ console.log("Contact form submission:", email);
+ // Here you can add your form submission logic
+ }}
/>
@@ -123,7 +95,7 @@ export default function ContactPage() {
title: "Právní", items: [
{ label: "Ochrana osobních údajů", href: "#" },
{ label: "Podmínky používání", href: "#" },
- { label: "Kontakt", href: "contact" },
+ { label: "Kontakt", href: "/contact" },
],
},
]}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index d8279a0..70a2ac6 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -32,7 +32,7 @@ export default function HomePage() {
navItems={[
{ name: "Projekty", id: "projects" },
{ name: "O nás", id: "about" },
- { name: "Klientská zóna", id: "clientzone" },
+ { name: "Klientská zóna", id: "/client-zone" },
{ name: "Kontakt", id: "contact" },
]}
button={{
@@ -194,14 +194,14 @@ export default function HomePage() {
columns={[
{
title: "Produkty", items: [
- { label: "Webové Stránky", href: "#projects" },
- { label: "Mobilní Aplikace", href: "#projects" },
- { label: "SaaS Řešení", href: "#projects" },
+ { label: "Web Development", href: "#projects" },
+ { label: "Mobile Apps", href: "#projects" },
+ { label: "SaaS Solutions", href: "#projects" },
],
},
{
title: "Společnost", items: [
- { label: "O nás", href: "#about" },
+ { label: "O nás", href: "/about" },
{ label: "Blog", href: "#" },
{ label: "Kariéra", href: "#" },
],
@@ -210,7 +210,7 @@ export default function HomePage() {
title: "Právní", items: [
{ label: "Ochrana osobních údajů", href: "#" },
{ label: "Podmínky používání", href: "#" },
- { label: "Kontakt", href: "#contact" },
+ { label: "Kontakt", href: "contact" },
],
},
]}
diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css
index 0606866..8551baa 100644
--- a/src/app/styles/variables.css
+++ b/src/app/styles/variables.css
@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
- --background: #f5f5f0;
- --card: #ffffff;
- --foreground: #1a1a1a;
- --primary-cta: #1a5d4a;
+ --background: #ffffff;
+ --card: #f9f9f9;
+ --foreground: #0a1a1a;
+ --primary-cta: #1a7d6b;
--primary-cta-text: #ffffff;
- --secondary-cta: #ff8a3a;
+ --secondary-cta: #ff8c42;
--secondary-cta-text: #ffffff;
- --accent: #ff8a3a;
- --background-accent: #1a5d4a;
+ --accent: #ff8c42;
+ --background-accent: #1a7d6b;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);