first commit

This commit is contained in:
2025-05-13 12:12:47 +02:00
commit c37cf55f67
75 changed files with 13258 additions and 0 deletions

26
components/Tabsbar.tsx Normal file
View File

@@ -0,0 +1,26 @@
import Tab from '@/components/Tab';
import styles from '@/styles/Tabsbar.module.css';
const Tabsbar = () => {
return (
<div className={styles.tabs}>
<Tab icon="/logos/react_icon.svg" filename="home.tsx" path="/" />
<Tab icon="/logos/html_icon.svg" filename="about.html" path="/about" />
<Tab icon="/logos/css_icon.svg" filename="contact.css" path="/contact" />
<Tab icon="/logos/js_icon.svg" filename="projects.js" path="/projects" />
{/* <Tab
icon="/logos/json_icon.svg"
filename="articles.json"
path="/articles"
/> */}
<Tab
icon="/logos/markdown_icon.svg"
filename="github.md"
path="/github"
/>
</div>
);
};
export default Tabsbar;