Skip to content

Commit

Permalink
feat(web): update tools card ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
kareemmahlees committed May 5, 2024
1 parent e9099e1 commit 87d9df7
Showing 1 changed file with 41 additions and 43 deletions.
84 changes: 41 additions & 43 deletions apps/web/src/sections/ToolsCard/ToolsCard.astro
Original file line number Diff line number Diff line change
@@ -1,47 +1,45 @@
---
import Card from "@/components/Card.astro";
import Tools from "./tools";
import Card from "@/components/Card.astro"
import Tools from "./tools"
const tools: { src: string; alt: string; content: string }[] = [
{
src: "https://cdn.simpleicons.org/nextdotjs/white",
alt: "nextjs",
content: "Nextjs"
},
{
src: "https://cdn.simpleicons.org/rust/white",
alt: "rust",
content: "Rust"
},
{
src: "https://cdn.simpleicons.org/tauri/white",
alt: "tauri",
content: "Tauri"
},
{
src: "https://cdn.simpleicons.org/tailwindcss/white",
alt: "tailwind",
content: "Tailwind"
},
{
src: "https://cdn.simpleicons.org/vercel/white",
alt: "vercel",
content: "Vercel"
},{
src: "https://cdn.simpleicons.org/shadcnui/white",
alt: "shadcn/ui",
content: "shadcn/ui"
}
]
const tools: { src: string; alt: string; content: string }[] = [
{
src: "https://cdn.simpleicons.org/react/white",
alt: "react",
content: "React"
},
{
src: "https://cdn.simpleicons.org/rust/white",
alt: "rust",
content: "Rust"
},
{
src: "https://cdn.simpleicons.org/tauri/white",
alt: "tauri",
content: "Tauri"
},
{
src: "https://cdn.simpleicons.org/tailwindcss/white",
alt: "tailwind",
content: "Tailwind"
},
{
src: "https://cdn.simpleicons.org/go/white",
alt: "go",
content: "GoLang"
},
{
src: "https://cdn.simpleicons.org/shadcnui/white",
alt: "shadcn/ui",
content: "shadcn/ui"
}
]
---
<Card
id="tools"
header="Built with the tools you love"
>
<p slot="content">
<span class="text-foreground font-semibold">TableX</span> utilizes
modern tooling to provide a delightful developer experience and an
Immersive user experience.

<Card id="tools" header="Built with the tools you love">
<p slot="content">
<span class="text-foreground font-semibold">TableX</span> utilizes modern tooling
to provide a delightful developer experience and an Immersive user experience.
</p>
<Tools tools={tools} client:visible />
</Card>
<Tools tools={tools} client:visible />
</Card>

0 comments on commit 87d9df7

Please sign in to comment.