Skip to content

Commit

Permalink
Update Blender card details
Browse files Browse the repository at this point in the history
Replaced the last screenshot for the Blender site in the Index page. Updated the card title to "Blender" and the summary to "3D creation software".
[skip gpt_engineer]
  • Loading branch information
lovable-dev[bot] committed Feb 2, 2025
1 parent 25418fe commit 4b6fea6
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 34 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
68 changes: 34 additions & 34 deletions src/pages/Index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,53 +89,53 @@ const Index = () => {

<div className="rounded-lg overflow-hidden shadow-lg">
<img
src="/lovable-uploads/3309fee8-db74-4688-a19a-07b76af1cf48.png"
alt="Blender Developers Channel"
src="/lovable-uploads/e56ece64-3622-4b14-9860-c95328c4dde6.png"
alt="Blender Channel"
className="w-full h-auto"
/>
<div className="p-4 bg-white">
<h3 className="font-semibold">Blender Developers</h3>
<p className="text-sm text-gray-600">3D creation tutorials</p>
<h3 className="font-semibold">Blender</h3>
<p className="text-sm text-gray-600">3D creation software</p>
</div>
</div>
</div>
</div>
</div>
</section>

<section>
<h2 className="text-3xl font-bold mb-8">Reference Apps for Mobile and TV</h2>
<div className="grid md:grid-cols-3 gap-8">
{[
{
title: "PI Tube",
description: "Educational content delivery platform for mathematics and physics.",
},
{
title: "Blender Tube",
description: "3D animation and modeling tutorials for Blender enthusiasts.",
},
{
title: "XR Tube",
description: "Extended reality content streaming for immersive experiences.",
},
].map((app) => (
<div
key={app.title}
className="bg-white rounded-lg shadow-lg overflow-hidden hover:shadow-xl transition-shadow"
>
<img src="/placeholder.svg" alt={app.title} className="w-full h-48 object-cover" />
<div className="p-6">
<h3 className="text-xl font-bold mb-2">{app.title}</h3>
<p className="text-gray-600">{app.description}</p>
<section>
<h2 className="text-3xl font-bold mb-8">Reference Apps for Mobile and TV</h2>
<div className="grid md:grid-cols-3 gap-8">
{[
{
title: "PI Tube",
description: "Educational content delivery platform for mathematics and physics.",
},
{
title: "Blender Tube",
description: "3D animation and modeling tutorials for Blender enthusiasts.",
},
{
title: "XR Tube",
description: "Extended reality content streaming for immersive experiences.",
},
].map((app) => (
<div
key={app.title}
className="bg-white rounded-lg shadow-lg overflow-hidden hover:shadow-xl transition-shadow"
>
<img src="/placeholder.svg" alt={app.title} className="w-full h-48 object-cover" />
<div className="p-6">
<h3 className="text-xl font-bold mb-2">{app.title}</h3>
<p className="text-gray-600">{app.description}</p>
</div>
</div>
</div>
))}
</div>
))}
</div>
</section>
</section>
</div>
</div>
);
};

export default Index;
export default Index;

0 comments on commit 4b6fea6

Please sign in to comment.