-
-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathTechStack.jsx
More file actions
25 lines (23 loc) · 722 Bytes
/
TechStack.jsx
File metadata and controls
25 lines (23 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import React from "react";
import Image from "next/image";
import "./TechStack.css";
import flutterLogo from "../../assets/Flutter.png";
import appwriteLogo from "../../assets/Appwrite.png";
const TechStack = () => {
return (
<section className="tech-stack-container">
<div className="tech-stack">
<h2>TECH STACK</h2>
<div className="tech-logos">
<div className="tech-logo">
<Image src={flutterLogo} alt="Flutter" draggable={false} />
</div>
<div className="tech-logo">
<Image src={appwriteLogo} alt="Appwrite" draggable={false} />
</div>
</div>
</div>
</section>
);
};
export default React.memo(TechStack);