diff --git a/README.md b/README.md index 200f4282..e5ca4404 100644 --- a/README.md +++ b/README.md @@ -1 +1,4 @@ # Portfolio + +Netlify link: https://portfolio-kasia.netlify.app/ + diff --git a/package.json b/package.json index 48911600..a7c1bffd 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "project", + "name": "js-project-portfolio", "private": true, "version": "0.0.0", "type": "module", @@ -11,7 +11,8 @@ }, "dependencies": { "react": "^19.0.0", - "react-dom": "^19.0.0" + "react-dom": "^19.0.0", + "styled-components": "^6.1.18" }, "devDependencies": { "@eslint/js": "^9.21.0", diff --git a/src/App.jsx b/src/App.jsx index a161d8d3..8d65fd85 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,8 +1,29 @@ +import { Introduction } from "./components/about/Introduction"; +import { Tech } from "./components/Tech"; +import { Projects } from "./components/projects/Projects"; +import { Skills } from "./components/Skills"; +import { Contact } from "./components/about/Contact"; +import { Footer } from "./components/Footer"; + +import { styled } from "styled-components"; + +const StyledDiv = styled.div` + body { + margin: 0; + } +`; + export const App = () => { return ( - <> -

Portfolio

-

Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatem, laborum! Maxime animi nostrum facilis distinctio neque labore consectetur beatae eum ipsum excepturi voluptatum, dicta repellendus incidunt fugiat, consequatur rem aperiam.

- - ) -} + +
+ + + + + +
+