first commit
This commit is contained in:
26
components/Tabsbar.tsx
Normal file
26
components/Tabsbar.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user