Merge version_1 into main #2
@@ -7,7 +7,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function CareersPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
@@ -25,24 +25,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Startseite",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Über uns",
|
||||
id: "/ueber-uns",
|
||||
},
|
||||
{
|
||||
name: "Karriere",
|
||||
id: "/karriere",
|
||||
},
|
||||
{
|
||||
name: "Kontakt",
|
||||
id: "/kontakt",
|
||||
},
|
||||
{ name: "Startseite", id: "/" },
|
||||
{ name: "Über uns", id: "/ueber-uns" },
|
||||
{ name: "Karriere", id: "/karriere" },
|
||||
{ name: "Kontakt", id: "/kontakt" },
|
||||
]}
|
||||
brandName="Caner Elektronik"
|
||||
button={{ text: "Kontakt", href: "/kontakt" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -51,7 +40,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Karriere bei Caner Elektronik"
|
||||
description="Wir suchen ständig motivierte Elektriker für unser Team."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-with-arms-crossed-working-warehouse_23-2148923083.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-with-arms-crossed-working-warehouse_23-2148923083.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -61,60 +50,24 @@ export default function LandingPage() {
|
||||
title="Bewerben Sie sich jetzt"
|
||||
description="Senden Sie uns Ihre Unterlagen."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Name",
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "E-Mail",
|
||||
},
|
||||
{ name: "name", type: "text", placeholder: "Name" },
|
||||
{ name: "email", type: "email", placeholder: "E-Mail" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-working-warehouse_23-2148923085.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-working-warehouse_23-2148923085.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/electrician-construction-worker-overalls-with-drill-installation-sockets-home-renovation-concept_169016-7331.jpg?_wi=3"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/electrician-construction-worker-overalls-with-drill-installation-sockets-home-renovation-concept_169016-7331.jpg"
|
||||
logoText="Caner Elektronik"
|
||||
columns={[
|
||||
{
|
||||
title: "Kontakt",
|
||||
items: [
|
||||
{
|
||||
label: "Hauptstraße 123, 11457 Berlin",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "+49 015248124115",
|
||||
href: "tel:+49015248124115",
|
||||
},
|
||||
{
|
||||
label: "elektroink23@gmail.com",
|
||||
href: "mailto:elektroink23@gmail.com",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Rechtliches",
|
||||
items: [
|
||||
{
|
||||
label: "Impressum",
|
||||
href: "/impressum",
|
||||
},
|
||||
{
|
||||
label: "Datenschutz",
|
||||
href: "/datenschutz",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Kontakt", items: [{ label: "Hauptstraße 123, 11457 Berlin", href: "#" }, { label: "+49 015248124115", href: "tel:+49015248124115" }, { label: "elektroink23@gmail.com", href: "mailto:elektroink23@gmail.com" }] },
|
||||
{ title: "Rechtliches", items: [{ label: "Impressum", href: "/impressum" }, { label: "Datenschutz", href: "/datenschutz" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -7,7 +7,7 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
@@ -25,33 +25,20 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Startseite",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Über uns",
|
||||
id: "/ueber-uns",
|
||||
},
|
||||
{
|
||||
name: "Karriere",
|
||||
id: "/karriere",
|
||||
},
|
||||
{
|
||||
name: "Kontakt",
|
||||
id: "/kontakt",
|
||||
},
|
||||
{ name: "Startseite", id: "/" },
|
||||
{ name: "Über uns", id: "/ueber-uns" },
|
||||
{ name: "Karriere", id: "/karriere" },
|
||||
{ name: "Kontakt", id: "/kontakt" },
|
||||
]}
|
||||
brandName="Caner Elektronik"
|
||||
button={{ text: "Startseite", href: "/" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-section" data-section="contact-section">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Kontakt"
|
||||
title="Sprechen Sie uns an"
|
||||
description="Haben Sie ein dringendes Anliegen? Rufen Sie uns unter +49 015248124115 an oder schreiben Sie uns an elektroink23@gmail.com. Wir freuen uns auf Sie."
|
||||
@@ -67,16 +54,8 @@ export default function LandingPage() {
|
||||
title="Nachricht senden"
|
||||
description="Wir melden uns umgehend bei Ihnen zurück."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Ihr Name",
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Ihre E-Mail",
|
||||
},
|
||||
{ name: "name", type: "text", placeholder: "Ihr Name" },
|
||||
{ name: "email", type: "email", placeholder: "Ihre E-Mail" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-carrying-tester-mouth-while-repairing-ceiling-focus-light-home_23-2148087621.jpg"
|
||||
/>
|
||||
@@ -84,43 +63,15 @@ export default function LandingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/electrician-construction-worker-overalls-with-drill-installation-sockets-home-renovation-concept_169016-7331.jpg?_wi=4"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/electrician-construction-worker-overalls-with-drill-installation-sockets-home-renovation-concept_169016-7331.jpg"
|
||||
logoText="Caner Elektronik"
|
||||
columns={[
|
||||
{
|
||||
title: "Kontakt",
|
||||
items: [
|
||||
{
|
||||
label: "Hauptstraße 123, 11457 Berlin",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "+49 015248124115",
|
||||
href: "tel:+49015248124115",
|
||||
},
|
||||
{
|
||||
label: "elektroink23@gmail.com",
|
||||
href: "mailto:elektroink23@gmail.com",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Rechtliches",
|
||||
items: [
|
||||
{
|
||||
label: "Impressum",
|
||||
href: "/impressum",
|
||||
},
|
||||
{
|
||||
label: "Datenschutz",
|
||||
href: "/datenschutz",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Kontakt", items: [{ label: "Hauptstraße 123, 11457 Berlin", href: "#" }, { label: "+49 015248124115", href: "tel:+49015248124115" }, { label: "elektroink23@gmail.com", href: "mailto:elektroink23@gmail.com" }] },
|
||||
{ title: "Rechtliches", items: [{ label: "Impressum", href: "/impressum" }, { label: "Datenschutz", href: "/datenschutz" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
183
src/app/page.tsx
183
src/app/page.tsx
@@ -28,24 +28,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Startseite",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Über uns",
|
||||
id: "/ueber-uns",
|
||||
},
|
||||
{
|
||||
name: "Karriere",
|
||||
id: "/karriere",
|
||||
},
|
||||
{
|
||||
name: "Kontakt",
|
||||
id: "/kontakt",
|
||||
},
|
||||
{ name: "Startseite", id: "/" },
|
||||
{ name: "Über uns", id: "/ueber-uns" },
|
||||
{ name: "Karriere", id: "/karriere" },
|
||||
{ name: "Kontakt", id: "/kontakt" },
|
||||
]}
|
||||
brandName="Caner Elektronik"
|
||||
button={{ text: "Kontakt", href: "/kontakt" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -53,39 +42,15 @@ export default function LandingPage() {
|
||||
<HeroOverlay
|
||||
title="Ihr Spezialist für Elektroinstallationen – Immer erreichbar."
|
||||
description="Caner Elektronik: Wir bieten zuverlässige Elektroinstallation, Wartung und Reparaturen für Ihr Zuhause und Gewerbe. Profi-Qualität aus Berlin."
|
||||
buttons={[
|
||||
{
|
||||
text: "Kontakt aufnehmen",
|
||||
href: "/kontakt",
|
||||
},
|
||||
{
|
||||
text: "Chat starten",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Kontakt aufnehmen", href: "/kontakt" }, { text: "Chat starten", href: "#" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/electrician-switchboard-room-cable-connection-electrical-system-installation_169016-68225.jpg"
|
||||
imageAlt="Elektriker bei der Arbeit"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/electrician-inspects-connection-working-inside-switchboard-tool-hand_169016-68459.jpg",
|
||||
alt: "Elektriker bei Inspektion",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/electrician-installer-with-tool-his-hands-working-with-cable-construction-site_169016-5885.jpg",
|
||||
alt: "Elektriker bei der Arbeit",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/professional-overalls-with-tools-background-repair-site-home-renovation-concept_169016-7322.jpg",
|
||||
alt: "Fachmann vor Ort",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/man-carrying-tester-mouth-while-repairing-ceiling-focus-light-home_23-2148087621.jpg",
|
||||
alt: "Techniker im Einsatz",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/professional-overalls-with-tools-background-repair-site-full-length-home-renovation-concept_169016-7324.jpg",
|
||||
alt: "Profi-Elektriker",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/electrician-inspects-connection-working-inside-switchboard-tool-hand_169016-68459.jpg", alt: "Elektriker bei Inspektion" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/electrician-installer-with-tool-his-hands-working-with-cable-construction-site_169016-5885.jpg", alt: "Elektriker bei der Arbeit" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/professional-overalls-with-tools-background-repair-site-home-renovation-concept_169016-7322.jpg", alt: "Fachmann vor Ort" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/man-carrying-tester-mouth-while-repairing-ceiling-focus-light-home_23-2148087621.jpg", alt: "Techniker im Einsatz" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/professional-overalls-with-tools-background-repair-site-full-length-home-renovation-concept_169016-7324.jpg", alt: "Profi-Elektriker" },
|
||||
]}
|
||||
avatarText="Unser erfahrenes Team"
|
||||
/>
|
||||
@@ -96,27 +61,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
tag: "Support",
|
||||
title: "24/7 Support",
|
||||
subtitle: "Immer erreichbar",
|
||||
description: "Rund um die Uhr stehen wir Ihnen bei Notfällen zur Seite.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/call-center-service-illustration_24877-52389.jpg",
|
||||
},
|
||||
{
|
||||
tag: "Telefon",
|
||||
title: "Telefon-Service",
|
||||
subtitle: "Direkter Kontakt",
|
||||
description: "Persönliche Beratung und schnelle Hilfe am Telefon.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blue-phone-icon-communication-support_187299-46705.jpg",
|
||||
},
|
||||
{
|
||||
tag: "Termin",
|
||||
title: "Terminvergabe",
|
||||
subtitle: "Schnell & Unkompliziert",
|
||||
description: "Kurzfristige Termine nach Ihren Wünschen.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/png-menstruation-female-problems-concept-isolated-white-background_185193-162370.jpg",
|
||||
},
|
||||
{ tag: "Support", title: "24/7 Support", subtitle: "Immer erreichbar", description: "Rund um die Uhr stehen wir Ihnen bei Notfällen zur Seite.", imageSrc: "http://img.b2bpic.net/free-vector/call-center-service-illustration_24877-52389.jpg" },
|
||||
{ tag: "Telefon", title: "Telefon-Service", subtitle: "Direkter Kontakt", description: "Persönliche Beratung und schnelle Hilfe am Telefon.", imageSrc: "http://img.b2bpic.net/free-photo/blue-phone-icon-communication-support_187299-46705.jpg" },
|
||||
{ tag: "Termin", title: "Terminvergabe", subtitle: "Schnell & Unkompliziert", description: "Kurzfristige Termine nach Ihren Wünschen.", imageSrc: "http://img.b2bpic.net/free-photo/png-menstruation-female-problems-concept-isolated-white-background_185193-162370.jpg" },
|
||||
]}
|
||||
title="Unsere Services"
|
||||
description="Schnell, zuverlässig und rund um die Uhr für Sie da."
|
||||
@@ -130,38 +77,10 @@ export default function LandingPage() {
|
||||
title="Kundenstimmen"
|
||||
description="Was unsere Kunden über uns sagen."
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
title: "Sehr zufrieden",
|
||||
quote: "Schnelle Hilfe beim Stromausfall, absolut professionell.",
|
||||
name: "Max Mustermann",
|
||||
role: "Privatkunde",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-arms-crossed-working-warehouse_23-2148923083.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
title: "Top Service",
|
||||
quote: "Zuverlässige Installation, klare Kommunikation.",
|
||||
name: "Erika Musterfrau",
|
||||
role: "Gewerbekunde",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-female-mechanic-repair-garage_107420-95937.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
title: "Jederzeit wieder",
|
||||
quote: "Der Notdienst war innerhalb von 30 Minuten da.",
|
||||
name: "Lukas Schneider",
|
||||
role: "Privatkunde",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-plus-size-man-working-construction_23-2150772847.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
title: "Großartige Arbeit",
|
||||
quote: "Sauber gearbeitet und sehr freundliches Team.",
|
||||
name: "Julia Weiss",
|
||||
role: "Immobilienbesitzerin",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-working-warehouse_23-2148923085.jpg?_wi=1",
|
||||
},
|
||||
{ id: "t1", title: "Sehr zufrieden", quote: "Schnelle Hilfe beim Stromausfall, absolut professionell.", name: "Max Mustermann", role: "Privatkunde", imageSrc: "http://img.b2bpic.net/free-photo/man-with-arms-crossed-working-warehouse_23-2148923083.jpg" },
|
||||
{ id: "t2", title: "Top Service", quote: "Zuverlässige Installation, klare Kommunikation.", name: "Erika Musterfrau", role: "Gewerbekunde", imageSrc: "http://img.b2bpic.net/free-photo/portrait-female-mechanic-repair-garage_107420-95937.jpg" },
|
||||
{ id: "t3", title: "Jederzeit wieder", quote: "Der Notdienst war innerhalb von 30 Minuten da.", name: "Lukas Schneider", role: "Privatkunde", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-plus-size-man-working-construction_23-2150772847.jpg" },
|
||||
{ id: "t4", title: "Großartige Arbeit", quote: "Sauber gearbeitet und sehr freundliches Team.", name: "Julia Weiss", role: "Immobilienbesitzerin", imageSrc: "http://img.b2bpic.net/free-photo/man-working-warehouse_23-2148923085.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -173,21 +92,9 @@ export default function LandingPage() {
|
||||
sideDescription="Antworten auf Ihre Fragen rund um Elektroinstallationen."
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "Bieten Sie auch Notdienste an?",
|
||||
content: "Ja, wir bieten einen 24/7 Notdienst für Berlin an.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "Wie schnell können Sie vor Ort sein?",
|
||||
content: "Je nach Dringlichkeit und Standort sind wir meist innerhalb einer Stunde bei Ihnen.",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Welche Gebiete decken Sie ab?",
|
||||
content: "Wir sind primär im Stadtgebiet Berlin tätig.",
|
||||
},
|
||||
{ id: "q1", title: "Bieten Sie auch Notdienste an?", content: "Ja, wir bieten einen 24/7 Notdienst für Berlin an." },
|
||||
{ id: "q2", title: "Wie schnell können Sie vor Ort sein?", content: "Je nach Dringlichkeit und Standort sind wir meist innerhalb einer Stunde bei Ihnen." },
|
||||
{ id: "q3", title: "Welche Gebiete decken Sie ab?", content: "Wir sind primär im Stadtgebiet Berlin tätig." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -201,59 +108,23 @@ export default function LandingPage() {
|
||||
title="Warum wir?"
|
||||
description="Erfahren Sie, was uns auszeichnet."
|
||||
features={[
|
||||
{
|
||||
title: "Qualifizierte Fachleute",
|
||||
description: "Unser Team besteht aus ausgebildeten Elektrikern.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/24-hour-arrow-multiple-colours-set_78370-7248.jpg",
|
||||
},
|
||||
{
|
||||
title: "Faire Preise",
|
||||
description: "Transparente Kostenstruktur ohne versteckte Gebühren.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/24-hour-clock_78370-6171.jpg",
|
||||
},
|
||||
{ title: "Qualifizierte Fachleute", description: "Unser Team besteht aus ausgebildeten Elektrikern.", imageSrc: "http://img.b2bpic.net/free-vector/24-hour-arrow-multiple-colours-set_78370-7248.jpg" },
|
||||
{ title: "Faire Preise", description: "Transparente Kostenstruktur ohne versteckte Gebühren.", imageSrc: "http://img.b2bpic.net/free-vector/24-hour-clock_78370-6171.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/electrician-construction-worker-overalls-with-drill-installation-sockets-home-renovation-concept_169016-7331.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/electrician-construction-worker-overalls-with-drill-installation-sockets-home-renovation-concept_169016-7331.jpg"
|
||||
logoText="Caner Elektronik"
|
||||
columns={[
|
||||
{
|
||||
title: "Kontakt",
|
||||
items: [
|
||||
{
|
||||
label: "Hauptstraße 123, 11457 Berlin",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "+49 015248124115",
|
||||
href: "tel:+49015248124115",
|
||||
},
|
||||
{
|
||||
label: "elektroink23@gmail.com",
|
||||
href: "mailto:elektroink23@gmail.com",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Rechtliches",
|
||||
items: [
|
||||
{
|
||||
label: "Impressum",
|
||||
href: "/impressum",
|
||||
},
|
||||
{
|
||||
label: "Datenschutz",
|
||||
href: "/datenschutz",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Kontakt", items: [{ label: "Hauptstraße 123, 11457 Berlin", href: "#" }, { label: "+49 015248124115", href: "tel:+49015248124115" }, { label: "elektroink23@gmail.com", href: "mailto:elektroink23@gmail.com" }] },
|
||||
{ title: "Rechtliches", items: [{ label: "Impressum", href: "/impressum" }, { label: "Datenschutz", href: "/datenschutz" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -6,7 +6,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
@@ -24,24 +24,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Startseite",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Über uns",
|
||||
id: "/ueber-uns",
|
||||
},
|
||||
{
|
||||
name: "Karriere",
|
||||
id: "/karriere",
|
||||
},
|
||||
{
|
||||
name: "Kontakt",
|
||||
id: "/kontakt",
|
||||
},
|
||||
{ name: "Startseite", id: "/" },
|
||||
{ name: "Über uns", id: "/ueber-uns" },
|
||||
{ name: "Karriere", id: "/karriere" },
|
||||
{ name: "Kontakt", id: "/kontakt" },
|
||||
]}
|
||||
brandName="Caner Elektronik"
|
||||
button={{ text: "Kontakt", href: "/kontakt" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -49,58 +38,23 @@ export default function LandingPage() {
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={true}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Über Caner Elektronik",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-male-car-mechanic-car-repair-shop_23-2150367540.jpg",
|
||||
alt: "Team",
|
||||
},
|
||||
{ type: "text", content: "Über Caner Elektronik" },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/portrait-male-car-mechanic-car-repair-shop_23-2150367540.jpg", alt: "Team" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/electrician-construction-worker-overalls-with-drill-installation-sockets-home-renovation-concept_169016-7331.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/electrician-construction-worker-overalls-with-drill-installation-sockets-home-renovation-concept_169016-7331.jpg"
|
||||
logoText="Caner Elektronik"
|
||||
columns={[
|
||||
{
|
||||
title: "Kontakt",
|
||||
items: [
|
||||
{
|
||||
label: "Hauptstraße 123, 11457 Berlin",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "+49 015248124115",
|
||||
href: "tel:+49015248124115",
|
||||
},
|
||||
{
|
||||
label: "elektroink23@gmail.com",
|
||||
href: "mailto:elektroink23@gmail.com",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Rechtliches",
|
||||
items: [
|
||||
{
|
||||
label: "Impressum",
|
||||
href: "/impressum",
|
||||
},
|
||||
{
|
||||
label: "Datenschutz",
|
||||
href: "/datenschutz",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Kontakt", items: [{ label: "Hauptstraße 123, 11457 Berlin", href: "#" }, { label: "+49 015248124115", href: "tel:+49015248124115" }, { label: "elektroink23@gmail.com", href: "mailto:elektroink23@gmail.com" }] },
|
||||
{ title: "Rechtliches", items: [{ label: "Impressum", href: "/impressum" }, { label: "Datenschutz", href: "/datenschutz" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user