Viel Spaß, Ramez

This commit is contained in:
BuildTools
2025-12-19 18:25:38 +01:00
parent 96e46507c8
commit 5d780e0c36
16 changed files with 435 additions and 116 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -1,26 +1,27 @@
@import "tailwindcss";
@import "tw-animate-css";
:root {
--background: #ffffff;
--foreground: #171717;
--background: #0a0a0a;
--foreground: #151515;
--border: #373737;
--primary: #FFFFFF;
--secondary: #989898;
--highlight: #FF00FF;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
--color-background: var(--background);
--color-foreground: var(--foreground);
--color-border: var(--border);
--color-primary: var(--primary);
--color-secondary: var(--secondary);
--color-highlight: var(--highlight);
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
}
background-color: var(--background);
color: var(--primary);
font-family: monospace;
}

46
app/imprint/page.tsx Normal file
View File

@@ -0,0 +1,46 @@
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>
);
}

View File

@@ -1,34 +1,20 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
import type { Metadata } from 'next';
import './globals.css';
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: 'GSH Digital Services'
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}
type Props = Readonly<{
children: React.ReactNode;
}>
export default function RootLayout({ children }: Props) {
return (
<html lang="en">
<body>
{children}
</body>
</html>
);
}

View File

@@ -1,65 +1,43 @@
import Image from "next/image";
import Image from 'next/image';
import Link from 'next/link';
import Logo from '@/public/logo.svg';
import GradientText from '@/components/GradientText';
export default function Home() {
return (
<div className="flex min-h-screen items-center justify-center bg-zinc-50 font-sans dark:bg-black">
<main className="flex min-h-screen w-full max-w-3xl flex-col items-center justify-between py-32 px-16 bg-white dark:bg-black sm:items-start">
<Image
className="dark:invert"
src="/next.svg"
alt="Next.js logo"
width={100}
height={20}
priority
/>
<div className="flex flex-col items-center gap-6 text-center sm:items-start sm:text-left">
<h1 className="max-w-xs text-3xl font-semibold leading-10 tracking-tight text-black dark:text-zinc-50">
To get started, edit the page.tsx file.
</h1>
<p className="max-w-md text-lg leading-8 text-zinc-600 dark:text-zinc-400">
Looking for a starting point or more instructions? Head over to{" "}
<a
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
className="font-medium text-zinc-950 dark:text-zinc-50"
>
Templates
</a>{" "}
or the{" "}
<a
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
className="font-medium text-zinc-950 dark:text-zinc-50"
>
Learning
</a>{" "}
center.
</p>
return (
<div className="flex min-h-screen items-center justify-center">
<main className="flex min-h-screen w-full flex-col items-center justify-center gap-8">
<Image
className="w-[20rem]"
src={Logo}
alt="Company Logo"
width={300}
height={37}
/>
<div className="flex flex-col items-center">
<GradientText
className="font-bold text-lg"
colors={[ '#F52491', '#692896' ]}
animationSpeed={3}
>
Something great is being built here.
</GradientText>
<p>
<span>Can&apos;t wait? Contact us via </span>
<a href="mailto:info@gsh-services.com">
info@gsh-services.com
</a>
</p>
</div>
<Link
className="text-secondary underline"
href="/imprint"
>
Imprint
</Link>
</main>
</div>
<div className="flex flex-col gap-4 text-base font-medium sm:flex-row">
<a
className="flex h-12 w-full items-center justify-center gap-2 rounded-full bg-foreground px-5 text-background transition-colors hover:bg-[#383838] dark:hover:bg-[#ccc] md:w-[158px]"
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
<Image
className="dark:invert"
src="/vercel.svg"
alt="Vercel logomark"
width={16}
height={16}
/>
Deploy Now
</a>
<a
className="flex h-12 w-full items-center justify-center rounded-full border border-solid border-black/[.08] px-5 transition-colors hover:border-transparent hover:bg-black/[.04] dark:border-white/[.145] dark:hover:bg-[#1a1a1a] md:w-[158px]"
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
Documentation
</a>
</div>
</main>
</div>
);
}
);
}