Refactor website to use shadcn components

This commit is contained in:
2025-06-28 12:01:43 +00:00
parent 1648e376bf
commit 8c05ad29cb
78 changed files with 3858 additions and 2722 deletions

View File

@@ -1,10 +1,17 @@
import React from 'react';
import ImprintComp from "@/components/Legal/Imprint/ImprintComp";
import ImprintComp from "@/app/legal/imprint/ImprintComp";
import type {Metadata} from "next";
export async function generateMetadata(): Promise<Metadata> {
return {
title: "Impressum | Rhein Software",
};
}
const ImprintPage = () => {
return (
<div>
<ImprintComp />
<ImprintComp/>
</div>
);
};