39fe0c81e5
added dummy pages for about and contact. updated tailwind.config.js to include config/*.json to scan for classes. refactored system basics. Removed component-props, using generic LayoutComponentDefinition and LayoutContext. cleanup component-map. Updated renderer to be more failsafe. new abstracted components: vt-mega-menu, vt-sidemenu, vt-banner with 3 variants, vt-header, vt-homebutton, vt-cartbutton, vt-accountbutton, vt-linkbutton,
12 lines
306 B
TypeScript
12 lines
306 B
TypeScript
import React from "react";
|
|
|
|
export default function AboutPage() {
|
|
return (
|
|
<div className="content-container py-16">
|
|
<h1 className="text-3xl font-bold mb-4">Über uns</h1>
|
|
<p>
|
|
Willkommen bei Vibentec IT! Wir bieten maßgeschneiderte Softwarelösungen.
|
|
</p>
|
|
</div>
|
|
);
|
|
} |