added technologies component
This commit is contained in:
parent
a93c866163
commit
67de36560d
@ -1,5 +1,6 @@
|
|||||||
/* ----- Project Imports ----- */
|
/* ----- Project Imports ----- */
|
||||||
import Details from "@/components/Details.jsx";
|
import Details from "@/components/Details.jsx";
|
||||||
|
import Technologies from "@/components/Technologies.jsx";
|
||||||
import Projects from "@/components/Projects.jsx"
|
import Projects from "@/components/Projects.jsx"
|
||||||
import "@/styles/content.css";
|
import "@/styles/content.css";
|
||||||
|
|
||||||
@ -7,6 +8,7 @@ function Content() {
|
|||||||
return (
|
return (
|
||||||
<main className="contentContainer">
|
<main className="contentContainer">
|
||||||
<Details />
|
<Details />
|
||||||
|
<Technologies />
|
||||||
<Projects />
|
<Projects />
|
||||||
</main>
|
</main>
|
||||||
);
|
);
|
||||||
|
|||||||
@ -6,6 +6,7 @@ function Details() {
|
|||||||
return (
|
return (
|
||||||
<article className="detailsContainer">
|
<article className="detailsContainer">
|
||||||
<p>This be some details</p>
|
<p>This be some details</p>
|
||||||
|
<a href="#tech">Technologies</a>
|
||||||
<a href="#projects">Projects</a>
|
<a href="#projects">Projects</a>
|
||||||
</article>
|
</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