20 lines
479 B
TypeScript
20 lines
479 B
TypeScript
'use client';
|
|
|
|
import React from "react";
|
|
import SmallHero from "@/components/Helper/SmallHero";
|
|
|
|
const AboutHero = () => {
|
|
return (
|
|
<div className="relative overflow-hidden">
|
|
<SmallHero
|
|
title="Über uns"
|
|
subtitle="Digitaler Partner für individuelle Softwarelösungen."
|
|
backgroundImage="/images/contact.png"
|
|
blurBackground
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AboutHero;
|