Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3122d98301 | |||
| 10e0e21775 | |||
| f316cef86b | |||
| d25a028500 | |||
| e3dc8dc3d9 | |||
| ad832254a7 | |||
| 8f114e30e4 | |||
| 1d831bfdf9 | |||
| a87cf6f412 | |||
| bde58aabed | |||
| 63b2c78fee | |||
| def849513e | |||
| 90adc38700 | |||
| 130864e26a | |||
| a646ff5192 | |||
| 6c905722bc | |||
| 9c533e9a7c | |||
| eaabee7549 | |||
| f92a11cd5b | |||
| 4eaf512ec2 | |||
| 3de7b6e57b | |||
| d3363672c6 | |||
| d89a0df94a |
59
src/app/contact/page.tsx
Normal file
59
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
|
|
||||||
|
export default function ContactPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="shift-hover"
|
||||||
|
defaultTextAnimation="background-highlight"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="mediumSmall"
|
||||||
|
sizing="mediumSizeLargeTitles"
|
||||||
|
background="aurora"
|
||||||
|
cardStyle="gradient-radial"
|
||||||
|
primaryButtonStyle="radial-glow"
|
||||||
|
secondaryButtonStyle="solid"
|
||||||
|
headingFontWeight="extrabold"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Services", id: "/features" },
|
||||||
|
{ name: "Work", id: "/products" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
]}
|
||||||
|
brandName="Digital Plus"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="contact" data-section="contact">
|
||||||
|
<ContactSplit
|
||||||
|
tag="Kontakt"
|
||||||
|
title="Sprechen Sie mit uns"
|
||||||
|
description="Wir freuen uns darauf, von Ihrem Projekt zu hören. Senden Sie uns eine Nachricht oder buchen Sie einen Beratungstermin."
|
||||||
|
background={{ variant: "radial-gradient" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterBase
|
||||||
|
columns={[
|
||||||
|
{ title: "Agentur", items: [{ label: "Home", href: "/" }] },
|
||||||
|
{ title: "Kontakt", items: [{ label: "Riedstrasse 8, 8953 Dietikon", href: "#" }, { label: "058 510 88 30", href: "tel:0585108830" }] },
|
||||||
|
]}
|
||||||
|
logoText="Digital Plus GmbH"
|
||||||
|
copyrightText="© 2026 | Digital Plus GmbH"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -10,8 +10,8 @@ import { Open_Sans } from "next/font/google";
|
|||||||
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: 'Digital Plus GmbH | Digitale Agentur Dietikon',
|
title: 'Kontakt | Digital Plus',
|
||||||
description: 'Ihre Digitalagentur für Webentwicklung, Design und KI-Lösungen in Dietikon. Wir machen Ihr Unternehmen fit für die Zukunft.',
|
description: 'Kontaktieren Sie Digital Plus für Ihr nächstes Projekt.',
|
||||||
robots: {
|
robots: {
|
||||||
"index": true,
|
"index": true,
|
||||||
"follow": true
|
"follow": true
|
||||||
|
|||||||
358
src/app/page.tsx
358
src/app/page.tsx
@@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
|
||||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
@@ -31,22 +30,10 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "hero" },
|
||||||
name: "Home",
|
{ name: "Services", id: "features" },
|
||||||
id: "hero",
|
{ name: "Work", id: "products" },
|
||||||
},
|
{ name: "Contact", id: "/contact" },
|
||||||
{
|
|
||||||
name: "Services",
|
|
||||||
id: "features",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Work",
|
|
||||||
id: "products",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Digital Plus"
|
brandName="Digital Plus"
|
||||||
/>
|
/>
|
||||||
@@ -54,74 +41,19 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitKpi
|
<HeroSplitKpi
|
||||||
background={{
|
background={{ variant: "plain" }}
|
||||||
variant: "plain",
|
|
||||||
}}
|
|
||||||
title="Digitale Exzellenz aus Dietikon."
|
title="Digitale Exzellenz aus Dietikon."
|
||||||
description="Wir transformieren Ihre Vision in zukunftsweisende digitale Lösungen. Digital Plus GmbH steht für Innovation, Geschwindigkeit und messbare Ergebnisse."
|
description="Wir transformieren Ihre Vision in zukunftsweisende digitale Lösungen. Digital Plus GmbH steht für Innovation, Geschwindigkeit und messbare Ergebnisse."
|
||||||
kpis={[
|
kpis={[
|
||||||
{
|
{ value: "120+", label: "Projekte geliefert" },
|
||||||
value: "120+",
|
{ value: "95%", label: "Kundenzufriedenheit" },
|
||||||
label: "Projekte geliefert",
|
{ value: "10y", label: "Erfahrung im Markt" },
|
||||||
},
|
|
||||||
{
|
|
||||||
value: "95%",
|
|
||||||
label: "Kundenzufriedenheit",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: "10y",
|
|
||||||
label: "Erfahrung im Markt",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
enableKpiAnimation={true}
|
enableKpiAnimation={true}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/empty-office-with-analytics-diagrams-screen-running-economy-statistics-computers-business-space-startup-company-with-research-plans-charts-late-night-handheld-shot_482257-65066.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/empty-office-with-analytics-diagrams-screen-running-economy-statistics-computers-business-space-startup-company-with-research-plans-charts-late-night-handheld-shot_482257-65066.jpg"
|
||||||
imageAlt="Digitale Agentur Dashboard"
|
imageAlt="Digitale Agentur Dashboard"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
avatars={[
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/happy-employee-analyzing-graphs-wearing-headset_482257-77560.jpg",
|
|
||||||
alt: "Happy employee",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/executive-manager-analyzing-marketing-statistics-working-late-night-project-strategy-startup-office-businessman-planning-business-investment-help-increase-company-profit_482257-63809.jpg",
|
|
||||||
alt: "Executive manager",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/office-desk-filled-with-productivity-items-empty-home_482257-101134.jpg",
|
|
||||||
alt: "Office workspace",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/closeup-computer-desktop-workspace_53876-30381.jpg",
|
|
||||||
alt: "Desktop computer",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/people-working-together-animation-studio_23-2149208030.jpg",
|
|
||||||
alt: "Creative team",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
avatarText="Unser Expertenteam für Ihre digitalen Ziele"
|
avatarText="Unser Expertenteam für Ihre digitalen Ziele"
|
||||||
marqueeItems={[
|
|
||||||
{
|
|
||||||
type: "text",
|
|
||||||
text: "Webentwicklung",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "text",
|
|
||||||
text: "KI Beratung",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "text",
|
|
||||||
text: "Cloud Architekturen",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "text",
|
|
||||||
text: "UX/UI Design",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "text",
|
|
||||||
text: "Strategische IT",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -131,18 +63,9 @@ export default function LandingPage() {
|
|||||||
title="Ihr Partner für die digitale Zukunft"
|
title="Ihr Partner für die digitale Zukunft"
|
||||||
description="Unser Team aus erfahrenen Strategen und Entwicklern in Dietikon arbeitet leidenschaftlich daran, Ihren Unternehmenserfolg durch innovative Software und Design zu skalieren."
|
description="Unser Team aus erfahrenen Strategen und Entwicklern in Dietikon arbeitet leidenschaftlich daran, Ihren Unternehmenserfolg durch innovative Software und Design zu skalieren."
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{ value: "24/7", title: "Support" },
|
||||||
value: "24/7",
|
{ value: "Zero", title: "Fehlerrate" },
|
||||||
title: "Support",
|
{ value: "100%", title: "Fokus auf Sie" },
|
||||||
},
|
|
||||||
{
|
|
||||||
value: "Zero",
|
|
||||||
title: "Fehlerrate",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: "100%",
|
|
||||||
title: "Fokus auf Sie",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/african-man-guy-black-suit-students-with-laptop-girl-white-blouse_1157-41602.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/african-man-guy-black-suit-students-with-laptop-girl-white-blouse_1157-41602.jpg"
|
||||||
imageAlt="Digital Agentur Team"
|
imageAlt="Digital Agentur Team"
|
||||||
@@ -156,27 +79,19 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
features={[
|
features={[
|
||||||
{
|
{ title: "Webdesign & Webseiten-Erstellung", description: "Massgeschneiderte Websites, die überzeugen.", imageSrc: "https://img.b2bpic.net/free-photo/representation-user-experience-interface-design_23-2150169842.jpg?_wi=1" },
|
||||||
title: "Webentwicklung",
|
{ title: "SEO", description: "Suchmaschinenoptimierung für mehr Sichtbarkeit.", imageSrc: "https://img.b2bpic.net/free-photo/close-up-accounting-sales-statistics-computer-display_482257-122982.jpg?_wi=1" },
|
||||||
description: "High-Performance Webanwendungen für jedes Bedürfnis.",
|
{ title: "Google Ads", description: "SEA für zielgerichteten Traffic.", imageSrc: "https://img.b2bpic.net/free-photo/woman-sitting-house-with-automation-light-system-holding-smartphone_482257-7531.jpg?_wi=1" },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-uses-ai-chatbot-system-computer-guide-her-through-tasks_482257-118915.jpg",
|
{ title: "Social Media", description: "Strategisches Marketing auf allen Kanälen.", imageSrc: "https://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg?_wi=1" },
|
||||||
imageAlt: "Web",
|
{ title: "Branding", description: "Logo Design & Markenaufbau.", imageSrc: "https://img.b2bpic.net/free-photo/technician-making-sure-high-tech-facility-data-center-is-appropriately-equipped_482257-94430.jpg?_wi=1" },
|
||||||
},
|
{ title: "Video", description: "Image-, Werbe- und Erklärvideos.", imageSrc: "https://img.b2bpic.net/free-photo/representation-user-experience-interface-design_23-2150169842.jpg?_wi=2" },
|
||||||
{
|
{ title: "E-Commerce", description: "Online Shops & Shopify-Lösungen.", imageSrc: "https://img.b2bpic.net/free-photo/close-up-accounting-sales-statistics-computer-display_482257-122982.jpg?_wi=2" },
|
||||||
title: "UX/UI Design",
|
{ title: "Leadgen", description: "Effektive Leadgenerierung.", imageSrc: "https://img.b2bpic.net/free-photo/woman-sitting-house-with-automation-light-system-holding-smartphone_482257-7531.jpg?_wi=2" },
|
||||||
description: "Erlebnisse, die Ihre Kunden begeistern.",
|
{ title: "Content", description: "Digitale Marketingstrategien & Copywriting.", imageSrc: "https://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg?_wi=2" },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-futuristic-screen_23-2149126945.jpg",
|
{ title: "Schulungen", description: "B2B-Schulungen & 3D-Layouts.", imageSrc: "https://img.b2bpic.net/free-photo/technician-making-sure-high-tech-facility-data-center-is-appropriately-equipped_482257-94430.jpg?_wi=2" },
|
||||||
imageAlt: "UI",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "KI Beratung",
|
|
||||||
description: "Automatisierung mit den modernsten Technologien.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-customizing-avatar-concept_23-2150729044.jpg",
|
|
||||||
imageAlt: "KI",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Unsere Kernleistungen"
|
title="Unsere Kernleistungen"
|
||||||
description="Von Webentwicklung bis hin zu KI-gestützten Automatisierungslösungen – wir setzen Maßstäbe."
|
description="Von Webdesign bis zu komplexen Marketingstrategien – wir begleiten Ihr Business digital."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -184,57 +99,12 @@ export default function LandingPage() {
|
|||||||
<ProductCardFour
|
<ProductCardFour
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="one-large-right-three-stacked-left"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{ id: "1", name: "E-Commerce App", price: "ab 15k CHF", variant: "Web", imageSrc: "http://img.b2bpic.net/free-photo/representation-user-experience-interface-design_23-2150169842.jpg" },
|
||||||
id: "1",
|
{ id: "2", name: "CRM System", price: "ab 25k CHF", variant: "Saas", imageSrc: "http://img.b2bpic.net/free-photo/close-up-accounting-sales-statistics-computer-display_482257-122982.jpg" },
|
||||||
name: "E-Commerce App",
|
{ id: "3", name: "Cloud Dashboard", price: "ab 12k CHF", variant: "Cloud", imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-house-with-automation-light-system-holding-smartphone_482257-7531.jpg" },
|
||||||
price: "ab 15k CHF",
|
|
||||||
variant: "Web",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/representation-user-experience-interface-design_23-2150169842.jpg",
|
|
||||||
imageAlt: "Project 1",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
name: "CRM System",
|
|
||||||
price: "ab 25k CHF",
|
|
||||||
variant: "Saas",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-accounting-sales-statistics-computer-display_482257-122982.jpg",
|
|
||||||
imageAlt: "Project 2",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
name: "Cloud Dashboard",
|
|
||||||
price: "ab 12k CHF",
|
|
||||||
variant: "Cloud",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-house-with-automation-light-system-holding-smartphone_482257-7531.jpg",
|
|
||||||
imageAlt: "Project 3",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
name: "Design System",
|
|
||||||
price: "ab 8k CHF",
|
|
||||||
variant: "UI",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-studying-infographics-performance-metrics_482257-122632.jpg",
|
|
||||||
imageAlt: "Project 4",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
name: "Chatbot-Integration",
|
|
||||||
price: "ab 5k CHF",
|
|
||||||
variant: "KI",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/glowing-computer-monitor-displays-vibrant-futuristic-patterns-generated-by-ai_188544-27240.jpg",
|
|
||||||
imageAlt: "Project 5",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "6",
|
|
||||||
name: "Mobile App",
|
|
||||||
price: "ab 20k CHF",
|
|
||||||
variant: "Mobile",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/cartoon-clay-phone-14-pro-back-side-dark-background_187299-35214.jpg",
|
|
||||||
imageAlt: "Project 6",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Unsere Referenzprojekte"
|
title="Unsere Referenzprojekte"
|
||||||
description="Ein Einblick in unsere jüngsten Erfolgsgeschichten."
|
description="Ein Einblick in unsere jüngsten Erfolgsgeschichten."
|
||||||
@@ -247,57 +117,9 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{ id: "basic", badge: "Basis", price: "ab 2.500 CHF", subtitle: "Der schnelle Einstieg", buttons: [{ text: "Jetzt anfragen", href: "/contact" }], features: ["Design Konzept", "Responsive UI", "Support"] },
|
||||||
id: "basic",
|
{ id: "pro", badge: "Pro", price: "ab 7.500 CHF", subtitle: "Für wachsende Unternehmen", buttons: [{ text: "Jetzt anfragen", href: "/contact" }], features: ["Alle Basis-Features", "Backend API", "Cloud Hosting"] },
|
||||||
badge: "Basis",
|
{ id: "enterprise", badge: "Scale", price: "nach Mass", subtitle: "Individuelle Lösungen", buttons: [{ text: "Jetzt anfragen", href: "/contact" }], features: ["Alles aus Pro", "KI-Integration", "Dedizierter Support"] },
|
||||||
price: "ab 2.500 CHF",
|
|
||||||
subtitle: "Der schnelle Einstieg",
|
|
||||||
buttons: [
|
|
||||||
{
|
|
||||||
text: "Jetzt anfragen",
|
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
features: [
|
|
||||||
"Design Konzept",
|
|
||||||
"Responsive UI",
|
|
||||||
"Support",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "pro",
|
|
||||||
badge: "Pro",
|
|
||||||
price: "ab 7.500 CHF",
|
|
||||||
subtitle: "Für wachsende Unternehmen",
|
|
||||||
buttons: [
|
|
||||||
{
|
|
||||||
text: "Jetzt anfragen",
|
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
features: [
|
|
||||||
"Alle Basis-Features",
|
|
||||||
"Backend API",
|
|
||||||
"Cloud Hosting",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "enterprise",
|
|
||||||
badge: "Scale",
|
|
||||||
price: "nach Mass",
|
|
||||||
subtitle: "Individuelle Lösungen",
|
|
||||||
buttons: [
|
|
||||||
{
|
|
||||||
text: "Jetzt anfragen",
|
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
features: [
|
|
||||||
"Alles aus Pro",
|
|
||||||
"KI-Integration",
|
|
||||||
"Dedizierter Support",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Transparente Konditionen"
|
title="Transparente Konditionen"
|
||||||
description="Wählen Sie das Modell, das am besten zu Ihrem aktuellen Bedarf passt."
|
description="Wählen Sie das Modell, das am besten zu Ihrem aktuellen Bedarf passt."
|
||||||
@@ -311,46 +133,8 @@ export default function LandingPage() {
|
|||||||
gridVariant="asymmetric-60-wide-40-narrow"
|
gridVariant="asymmetric-60-wide-40-narrow"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{ id: "1", name: "Thomas Meier", role: "Geschäftsführer", company: "TechVision AG", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg" },
|
||||||
id: "1",
|
{ id: "2", name: "Sarah Müller", role: "Inhaberin", company: "Local Boutique", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/technician-making-sure-high-tech-facility-data-center-is-appropriately-equipped_482257-94430.jpg" },
|
||||||
name: "Thomas Meier",
|
|
||||||
role: "Geschäftsführer",
|
|
||||||
company: "TechVision AG",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
name: "Sarah Müller",
|
|
||||||
role: "Inhaberin",
|
|
||||||
company: "Local Boutique",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/technician-making-sure-high-tech-facility-data-center-is-appropriately-equipped_482257-94430.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
name: "Klaus Weber",
|
|
||||||
role: "CTO",
|
|
||||||
company: "Logistik Plus",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-young-woman-with-eyeglasses_23-2148452693.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
name: "Elena Fischer",
|
|
||||||
role: "Marketing",
|
|
||||||
company: "BrandBoost",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
name: "Marco Rossi",
|
|
||||||
role: "Produktion",
|
|
||||||
company: "DesignWerke",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/computer-scientist-server-farm-ensuring-compliance-with-industry-standards_482257-123806.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Was Kunden über uns sagen"
|
title="Was Kunden über uns sagen"
|
||||||
description="Zufriedene Partner aus Dietikon und der gesamten Schweiz."
|
description="Zufriedene Partner aus Dietikon und der gesamten Schweiz."
|
||||||
@@ -362,21 +146,10 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{ id: "1", title: "Wo ist Digital Plus GmbH ansässig?", content: "Unser Studio befindet sich mitten in Dietikon, zentral in der Region Zürich." },
|
||||||
id: "1",
|
{ id: "2", title: "Bieten Sie auch Wartung an?", content: "Ja, wir bieten umfassende Support- und Wartungspakete für alle unsere Projekte an." },
|
||||||
title: "Wo ist Digital Plus GmbH ansässig?",
|
{ id: "3", title: "Wie arbeiten Sie?", content: "Wir arbeiten Projekt zu Projekt." },
|
||||||
content: "Unser Studio befindet sich mitten in Dietikon, zentral in der Region Zürich.",
|
{ id: "4", title: "Wem gehört die Webseite?", content: "Jede webseite gehört Ihnen dennoch können sie uns bei fragen kontaktieren" },
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
title: "Bieten Sie auch Wartung an?",
|
|
||||||
content: "Ja, wir bieten umfassende Support- und Wartungspakete für alle unsere Projekte an.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
title: "Wie lange dauert ein Web-Projekt?",
|
|
||||||
content: "Ein Standardprojekt dauert je nach Komplexität zwischen 4 und 12 Wochen.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Häufige Fragen"
|
title="Häufige Fragen"
|
||||||
description="Hier finden Sie Antworten auf die wichtigsten Fragen zur Zusammenarbeit."
|
description="Hier finden Sie Antworten auf die wichtigsten Fragen zur Zusammenarbeit."
|
||||||
@@ -384,68 +157,15 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
|
||||||
<ContactCTA
|
|
||||||
useInvertedBackground={false}
|
|
||||||
background={{
|
|
||||||
variant: "radial-gradient",
|
|
||||||
}}
|
|
||||||
tag="Kontakt"
|
|
||||||
title="Starten Sie Ihr Projekt"
|
|
||||||
description="Haben Sie ein konkretes Anliegen oder Fragen zu unserem Service? Wir freuen uns auf Ihren Anruf."
|
|
||||||
buttons={[
|
|
||||||
{
|
|
||||||
text: "Jetzt anfragen",
|
|
||||||
href: "mailto:info@digital-plus.ch",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<FooterBase
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{ title: "Agentur", items: [{ label: "Über uns", href: "#about" }, { label: "Karriere", href: "#" }] },
|
||||||
title: "Agentur",
|
{ title: "Leistungen", items: [{ label: "Webdesign", href: "#features" }, { label: "Marketing", href: "#features" }] },
|
||||||
items: [
|
{ title: "Kontakt", items: [{ label: "Riedstrasse 8, 8953 Dietikon", href: "#" }, { label: "058 510 88 30", href: "tel:0585108830" }] },
|
||||||
{
|
|
||||||
label: "Über uns",
|
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Karriere",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Leistungen",
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Webdesign",
|
|
||||||
href: "#features",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Software",
|
|
||||||
href: "#features",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Rechtliches",
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Datenschutz",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Impressum",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
logoText="Digital Plus GmbH"
|
logoText="Digital Plus GmbH"
|
||||||
|
copyrightText="© 2026 | Digital Plus GmbH"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user