- Introduced a new Services component with basic setup. - Updated layout files to ensure consistent global styling references. - Enhanced Navbar with pathname detection for active link styling. - Fixed navigation link URL for "Leistungen" in constants.
12 lines
211 B
TypeScript
12 lines
211 B
TypeScript
import React from 'react';
|
|
import Contact from "@/components/Contact/Contact";
|
|
|
|
const ContactPage = () => {
|
|
return (
|
|
<div>
|
|
<Contact/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ContactPage; |