Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed app/assets/Appwrite.png
Binary file not shown.
Binary file removed app/assets/Flutter.png
Binary file not shown.
19 changes: 11 additions & 8 deletions app/components/TechStack/TechStack.jsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
import "./TechStack.css";
import flutterLogo from "../../assets/Flutter.png";
import appwriteLogo from "../../assets/Appwrite.png";

const TechStack = () => {
const technologies = [
{ name: "Flutter", icon: "/flutter.svg" },
{ name: "Appwrite", icon: "/appwrite.svg" },
];

return (
<section className="tech-stack-container">
<div className="tech-stack">
<h2>TECH STACK</h2>
<div className="tech-logos">
<div className="tech-logo">
<img src={flutterLogo.src} alt="Flutter" />
</div>
<div className="tech-logo">
<img src={appwriteLogo.src} alt="Appwrite" />
</div>
{technologies.map((tech) => (
<div key={tech.name} className="tech-logo">
<img src={tech.icon} alt={tech.name} className="tech-icon" />
<p className="tech-name">{tech.name}</p>
</div>
))}
</div>
</div>
</section>
Expand Down
9 changes: 9 additions & 0 deletions public/appwrite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/flutter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.