mock-up gallery

This commit is contained in:
gom-by
2025-01-13 13:18:11 +01:00
parent 7813e42e3a
commit 0ef71f41bd
9 changed files with 601 additions and 6 deletions

View File

@@ -0,0 +1,7 @@
export default function Gallery() {
return (
<>
</>
)
}

View File

@@ -8,6 +8,7 @@ body {
@layer base {
:root {
/* Define your custom padding value */
--background: 0 0% 100%;
--foreground: 0 0% 3.9%;
--card: 0 0% 100%;

View File

@@ -1,4 +1,5 @@
import Features, { FeatureItem } from "@/components/features";
import Gallery6 from "@/components/gallery";
import Hero from "@/components/hero";
export default function Home() {
@@ -104,6 +105,8 @@ export default function Home() {
</ul>
</FeatureItem>
</Features>
<Gallery6 />
<Gallery6 />
</main>
);
}