Files
realm-homepage/src/app/branding-assets/page.tsx
T

10 lines
234 B
TypeScript

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