codecraft-studio / index.html
Abmacode12's picture
Dans app.js :
ae793e3 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeCraft Studio</title>
<link rel="stylesheet" href="style.css">
<script defer src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-900 text-gray-100">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<project-card
title="Neon Dreams"
description="CSS animation showcase"
tech="HTML/CSS/JS"
image="http://static.photos/technology/640x360/1"
></project-card>
<project-card
title="Pixel Perfect"
description="Responsive UI components"
tech="React/Tailwind"
image="http://static.photos/minimal/640x360/2"
></project-card>
<project-card
title="Code Canvas"
description="Interactive coding playground"
tech="Vue/Node"
image="http://static.photos/abstract/640x360/3"
></project-card>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/project-card.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
</body>
</html>