Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

w12-design-handoff #53

Open
wants to merge 25 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 2 additions & 36 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,7 @@
<h1 align="center">
<a href="">
<img src="/src/assets/design-handoff.svg" alt="Project Banner Image">
</a>
</h1>

### Remove git

rm -rf .git

# Design Handoff Project

Replace this readme with your own information about your project.

Start by briefly describing the assignment in a sentence or two. Keep it short and to the point.

## Getting Started with the Project

### Dependency Installation & Startup Development Server

Once cloned, navigate to the project's root directory and this project uses npm (Node Package Manager) to manage its dependencies.

The command below is a combination of installing dependencies, opening up the project on VS Code and it will run a development server on your terminal.

```bash
npm i && code . && npm run dev
```

### The Problem

Describe how you approached to problem, and what tools and techniques you used to solve it. How did you plan? What technologies did you use? If you had more time, what would be next?
Transform a UX student's design into a React-based landing page for a gym/fitness club. This project bridges the gap between design and development, showcasing the art of bringing visuals to life with code.

### View it live

Every project should be deployed somewhere. Be sure to include the link to the deployed project so that the viewer can click around and see what it's all about.

## Instructions

<a href="instructions.md">
See instructions of this project
</a>
https://golden-kitsune-efb49e.netlify.app/
6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Music Releases - Project - Week 5</title>
<link href="https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap"
rel="stylesheet" />
<title>Sunny Yoga</title>
</head>
<body>
<div id="root"></div>
Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
"react-dom": "^18.2.0",
"react-responsive-carousel": "^3.2.23",
"styled-components": "^6.1.8"
},
"devDependencies": {
"@types/react": "^18.2.15",
Expand All @@ -21,6 +23,7 @@
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"vite": "^4.4.5"
"vite": "^4.4.5",
"vite-plugin-svgr": "^4.2.0"
}
}
1 change: 0 additions & 1 deletion public/vite.svg

This file was deleted.

7 changes: 0 additions & 7 deletions pull_request_template.md

This file was deleted.

34 changes: 32 additions & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
export const App = () => {
return <div>Find me in src/app.jsx!</div>;
import { About } from "./components/pages/About.jsx";
import { AboutTabletDesk } from "./components/pages/AboutTabletDesk.jsx";
import Arrow from "./components/pages/Arrow.jsx";
import { Teachers } from "./components/pages/Teachers.jsx";
import { TeachersTabletdesk } from "./components/pages/TeachersTabletdesk";
import Introduction from "./components/pages/Introduction.jsx";
import { Border } from "./components/pages/Border.jsx";
import { Promise } from "./components/pages/Promise.jsx";
import { Register } from "./components/pages/Register.jsx";
import { Quote } from "./components/pages/Quote.jsx";
import { Contact } from "./components/pages/Contact.jsx";
import { Questions } from "./components/pages/Questions.jsx";
const App = () => {
return (
<div>
<Introduction />
<Arrow />
<About />
<AboutTabletDesk />
<Promise />
<Teachers />
<TeachersTabletdesk />
<Border />
<Register />
<Border />
<Questions />
<Quote />
<Contact />
</div>
);
};

export default App;
Loading