Compare commits

..

6 Commits

Author SHA1 Message Date
ee0024a1a5 Merge version_28_1782170080354 into main
Merge version_28_1782170080354 into main
2026-06-22 23:14:56 +00:00
5aa387055b Update src/pages/HomePage/sections/Services.tsx 2026-06-22 23:14:53 +00:00
925cd4069d Merge version_27_1782167770889 into main
Merge version_27_1782167770889 into main
2026-06-22 22:37:56 +00:00
kudinDmitriyUp
88825c95a8 Bob AI: Populate src/pages/ContactPage.tsx (snippet builder, 1 sections) 2026-06-22 22:37:21 +00:00
kudinDmitriyUp
eee944adac Bob AI: Add contact page 2026-06-22 22:36:48 +00:00
83d490ccc1 Merge version_26_1782166662849 into main
Merge version_26_1782166662849 into main
2026-06-22 22:18:51 +00:00
5 changed files with 23 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ import HomePage from './pages/HomePage';
import VorOrtServicePage from "@/pages/VorOrtServicePage";
import AboutPage from "@/pages/AboutPage";
import SuccessPage from "@/pages/SuccessPage";
import ContactPage from "@/pages/ContactPage";
export default function App() {
return (
<Routes>
@@ -13,6 +14,7 @@ export default function App() {
<Route path="/vor-ort-service" element={<VorOrtServicePage />} />
<Route path="/about" element={<AboutPage />} />
<Route path="/success" element={<SuccessPage />} />
<Route path="/contact" element={<ContactPage />} />
</Route>
</Routes>
);

View File

@@ -107,6 +107,8 @@ export default function Layout() {
{ name: "Vor Ort Service", href: "/vor-ort-service" },
{ name: "About", href: "/about" },
{ name: "Success", href: "/success" },
{ name: "Contact", href: "/contact" },

17
src/pages/ContactPage.tsx Normal file
View File

@@ -0,0 +1,17 @@
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
export default function ContactPage() {
return (
<>
<div data-webild-section="ContactSplitForm"><ContactSplitForm
tag="Kontakt"
title="Kontaktieren Sie RojTec"
description="Wir sind für Sie da! Telefon: +4917675754999 | E-Mail: kontakt@rojtec.de | Adresse: Berliner Ring, 38440 Wolfsburg. Schreiben Sie uns Ihr Anliegen."
inputs={[{"name":"name","type":"text","placeholder":"Ihr Name","required":true},{"name":"email","type":"email","placeholder":"E-Mail-Adresse","required":true},{"name":"phone","type":"tel","placeholder":"Telefonnummer","required":false}]}
textarea={{"name":"message","placeholder":"Wie können wir Ihnen helfen?","rows":5,"required":true}}
buttonText="Nachricht senden"
imageSrc="https://img.freepik.com/free-photo/contact-us-communication-support-service-resolution-concept_53876-128103.jpg"
/></div>
</>
);
}

View File

@@ -16,7 +16,7 @@ const items = [
{
title: "Smart Home Lösungen",
description: "Integration von Beleuchtung, Sicherheit und Thermostaten.",
imageSrc: "http://img.b2bpic.net/free-photo/smart-application-tablet-placed-kitchen-desk-empty-house-automation-system-turning-l_482257-2747.jpg"
imageSrc: "https://images.pexels.com/photos/7562021/pexels-photo-7562021.jpeg?auto=compress&cs=tinysrgb&h=650&w=940&id=7562021"
},
{
title: "Technische Installation",

View File

@@ -9,4 +9,5 @@ export const routes: Route[] = [
{ path: '/vor-ort-service', label: 'Vor Ort Service', pageFile: 'VorOrtServicePage' },
{ path: '/about', label: 'About', pageFile: 'AboutPage' },
{ path: '/success', label: 'Success', pageFile: 'SuccessPage' },
{ path: '/contact', label: 'Contact', pageFile: 'ContactPage' },
];