Files
realm-homepage/src/app/branding-assets/page.tsx
2024-09-02 21:04:05 +02:00

12 lines
339 B
TypeScript

import { BrandingAssets } from "@/components/branding-assets";
import Footer from "@/components/footer";
import { Navigation } from "@/components/navigation";
export default function BrandingAssetsPage() {
return (
<main className="flex min-h-screen flex-col items-center justify-start">
<BrandingAssets />
</main>
);
}