46 lines
1.5 KiB
TypeScript
46 lines
1.5 KiB
TypeScript
import Link from 'next/link';
|
|
import GradientText from '@/components/GradientText';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="flex min-h-screen items-center justify-center">
|
|
<main className="flex min-h-screen flex-col justify-center gap-4">
|
|
|
|
<h1 className="font-bold text-lg">Imprint</h1>
|
|
|
|
<div className="flex flex-col text-secondary gap-2">
|
|
<div>
|
|
<Link href="/">
|
|
<GradientText
|
|
colors={[ '#F52491', '#692896' ]}
|
|
animationSpeed={3}
|
|
>
|
|
GSH Digital Services
|
|
</GradientText>
|
|
</Link>
|
|
<p>CEO Tim Herb</p>
|
|
</div>
|
|
|
|
<div>
|
|
<p>Horrenberger Straße 25</p>
|
|
<p>74909 Meckesheim</p>
|
|
<p>Germany</p>
|
|
</div>
|
|
|
|
<div>
|
|
<a href="mailto:info@gsh-services.com">
|
|
info@gsh-services.com
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<br />
|
|
<Link
|
|
className="text-secondary underline"
|
|
href="/"
|
|
>
|
|
Go back
|
|
</Link>
|
|
</main>
|
|
</div>
|
|
);
|
|
} |