trucs inutilesé

This commit is contained in:
gom-by
2025-01-17 15:38:36 +01:00
parent 89f44f4469
commit 9d9b5a5145
13 changed files with 1119 additions and 51 deletions

View File

@@ -1,4 +1,4 @@
import { ArrowRight } from "lucide-react";
import { ArrowRight, ArrowDown } from "lucide-react";
import { Button } from "@/components/ui/button";
@@ -30,7 +30,7 @@ export const posts: BlogSummaryInterface[] = [
published: "2025-01-14",
summary:
"A look at the tech trends to expect in 2025 and beyond, from AI to quantum computing.",
image: "https://via.placeholder.com/600x400?text=Tech+2025",
image: "https://shadcnblocks.com/images/block/placeholder-dark-1.svg",
href: "history/tech-advancements-2025",
},
{
@@ -44,7 +44,7 @@ export const posts: BlogSummaryInterface[] = [
published: "2025-01-12",
summary:
"Exploring how sustainable fashion is evolving in 2025 with innovative materials and ethical brands.",
image: "https://via.placeholder.com/600x400?text=Sustainable+Fashion",
image: "https://shadcnblocks.com/images/block/placeholder-dark-1.svg",
href: "history/sustainable-fashion-2025",
},
{
@@ -58,7 +58,7 @@ export const posts: BlogSummaryInterface[] = [
published: "2025-01-10",
summary:
"Highlighting the importance of mental health awareness in 2025, focusing on new treatments and societal changes.",
image: "https://via.placeholder.com/600x400?text=Mental+Health+2025",
image: "https://shadcnblocks.com/images/block/placeholder-dark-1.svg",
href: "/history/mental-health-awareness-2025",
},
];
@@ -76,10 +76,6 @@ const Blog = () => {
Elig doloremque mollitia fugiat omnis! Porro facilis quo
animi consequatur. Explicabo.
</p>
<Button variant="link" className="w-full sm:w-auto">
Explore all posts
<ArrowRight className="ml-2 size-4" />
</Button>
</div>
<div className="grid gap-6 md:grid-cols-2 lg:grid-cols-3 lg:gap-8">
{posts.map((post) => (
@@ -110,6 +106,10 @@ const Blog = () => {
</a>
))}
</div>
<Button variant="link" className="w-full sm:w-auto">
Explore more
<ArrowDown className="ml-2 size-4" />
</Button>
</div>
</section>
);