Refactor Über Uns page: rename lawyers to team, update structure, content, and layout; enhance animations, add map embed, and integrate DualCTA.

This commit is contained in:
2025-06-23 01:18:09 +09:00
parent c7bf2073d1
commit 2e42477afd
3 changed files with 124 additions and 68 deletions

View File

@@ -5,13 +5,13 @@ import {motion} from 'framer-motion';
export default function SubpageHero({
title,
subtitle,
}: {
}: Readonly<{
title: string;
subtitle?: string;
}) {
}>) {
return (
<section className="relative min-h-[35vh] flex items-center bg-white px-6 md:px-16 lg:px-36 pt-24">
<div className="z-10 flex flex-col gap-y-2">
<div className="z-10 flex flex-col gap-y-2 max-w-6xl mx-auto w-full">
<motion.h1
initial={{opacity: 0, y: 20}}
animate={{opacity: 1, y: 0}}