Rename landing component

This commit is contained in:
2026-05-06 08:29:44 +02:00
parent 243978bfdd
commit 67411ecaff
4 changed files with 9 additions and 9 deletions

View File

@@ -51,7 +51,7 @@ const packages = [
},
];
const CanvaLanding = () => {
const Landing = () => {
return (
<main className="min-h-screen overflow-hidden bg-background text-foreground">
<section className="relative grid min-h-screen grid-cols-1 border-b border-border lg:grid-cols-[1.08fr_0.92fr]">
@@ -246,4 +246,4 @@ const CanvaLanding = () => {
);
};
export { CanvaLanding };
export { Landing };

View File

@@ -1,5 +1,5 @@
---
import { CanvaLanding } from "@/components/canva-landing";
import { Landing } from "@/components/landing";
import "@/styles/global.css";
---
@@ -17,6 +17,6 @@ import "@/styles/global.css";
defer></script>
</head>
<body>
<CanvaLanding />
<Landing />
</body>
</html>