added technologies component
This commit is contained in:
parent
a93c866163
commit
67de36560d
@ -1,5 +1,6 @@
|
||||
/* ----- Project Imports ----- */
|
||||
import Details from "@/components/Details.jsx";
|
||||
import Technologies from "@/components/Technologies.jsx";
|
||||
import Projects from "@/components/Projects.jsx"
|
||||
import "@/styles/content.css";
|
||||
|
||||
@ -7,6 +8,7 @@ function Content() {
|
||||
return (
|
||||
<main className="contentContainer">
|
||||
<Details />
|
||||
<Technologies />
|
||||
<Projects />
|
||||
</main>
|
||||
);
|
||||
|
||||
@ -6,6 +6,7 @@ function Details() {
|
||||
return (
|
||||
<article className="detailsContainer">
|
||||
<p>This be some details</p>
|
||||
<a href="#tech">Technologies</a>
|
||||
<a href="#projects">Projects</a>
|
||||
</article>
|
||||
);
|
||||
|
||||
15
src/components/Technologies.jsx
Normal file
15
src/components/Technologies.jsx
Normal file
@ -0,0 +1,15 @@
|
||||
/* ----- Project Imports ----- */
|
||||
import "@/styles/technologies.css";
|
||||
|
||||
|
||||
function Technologies() {
|
||||
return (
|
||||
<article className="technologiesContainer">
|
||||
<h2 id="tech">This is Tech area title</h2>
|
||||
<p>This be some technologies</p>
|
||||
</article>
|
||||
);
|
||||
};
|
||||
|
||||
export default Technologies;
|
||||
|
||||
4
src/styles/technologies.css
Normal file
4
src/styles/technologies.css
Normal file
@ -0,0 +1,4 @@
|
||||
.technologiesContainer {
|
||||
min-height: 100vh;
|
||||
padding: 3rem;
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user