diff --git a/app/[locale]/(site)/about/page.tsx b/app/[locale]/(site)/about/page.tsx index 8866996..9ae8bc1 100644 --- a/app/[locale]/(site)/about/page.tsx +++ b/app/[locale]/(site)/about/page.tsx @@ -50,46 +50,46 @@ export default function AboutPage({ params: { locale } }: AboutPageProps) { return (
-
-

+
+

{copy.title}

-

+

{copy.intro}

-
-

+
+

{copy.valuesTitle}

-
- -

+
+ +

{copy.valueA}

-

+

{copy.valueAText}

-
- -

+
+ +

{copy.valueB}

-

+

{copy.valueBText}

-
- -

+
+ +

{copy.valueC}

-

+

{copy.valueCText}

@@ -98,17 +98,17 @@ export default function AboutPage({ params: { locale } }: AboutPageProps) { -
-

+
+

{copy.processTitle}

    {[copy.processOne, copy.processTwo, copy.processThree].map((step, index) => (
  1. - + {index + 1}

    {step}

    diff --git a/app/[locale]/(site)/contact/page.tsx b/app/[locale]/(site)/contact/page.tsx index dbe8f52..493a00d 100644 --- a/app/[locale]/(site)/contact/page.tsx +++ b/app/[locale]/(site)/contact/page.tsx @@ -3,6 +3,11 @@ import Link from "next/link"; import { MotionFade } from "@/components/motion-fade"; import { resolveLocale } from "@/lib/site-data"; +import { Button } from "@/src/components/ui/button"; +import { Card, CardContent, CardHeader, CardTitle } from "@/src/components/ui/card"; +import { Input } from "@/src/components/ui/input"; +import { Label } from "@/src/components/ui/label"; +import { Textarea } from "@/src/components/ui/textarea"; type ContactPageProps = { params: { @@ -43,77 +48,58 @@ export default function ContactPage({ params: { locale } }: ContactPageProps) { return (
    -
    -

    - {copy.title} -

    -

    - {copy.intro} -

    - -
      -
    • - - {copy.phone} -
    • -
    • - - {copy.mail} -
    • -
    • - - {copy.city} -
    • -
    -
    + + + {copy.title} +

    {copy.intro}

    +
    + +
      +
    • + + {copy.phone} +
    • +
    • + + {copy.mail} +
    • +
    • + + {copy.city} +
    • +
    +
    +
    -
    -
    - + + + + - + -