Skip to content

Commit

Permalink
Merge pull request #5 from Naetffy/Murcia
Browse files Browse the repository at this point in the history
Murcia
  • Loading branch information
RichiVilla authored Apr 25, 2024
2 parents fea2b75 + 06ab957 commit 9e60bb5
Show file tree
Hide file tree
Showing 47 changed files with 373 additions and 349 deletions.
9 changes: 9 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"react": "^18.2.0",
"react-bootstrap": "^2.10.2",
"react-dom": "^18.2.0",
"react-icons": "^5.1.0",
"react-router-dom": "^6.22.3",
"react-scripts": "5.0.1",
"sweetalert2": "^11.10.8",
Expand Down
Binary file removed public/images/1.jpg
Binary file not shown.
Binary file added public/images/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/images/2.jpg
Binary file not shown.
Binary file added public/images/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/images/3.jpg
Binary file not shown.
Binary file added public/images/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/images/6.jpg
Binary file not shown.
Binary file added public/images/6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
6 changes: 3 additions & 3 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="icon" href="./images/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="apple-touch-icon" href="./images/logo.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
Expand All @@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>ClothCraft</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
Binary file removed public/logo192.png
Binary file not shown.
Binary file removed public/logo512.png
Binary file not shown.
3 changes: 0 additions & 3 deletions public/robots.txt

This file was deleted.

38 changes: 0 additions & 38 deletions src/App.css

This file was deleted.

31 changes: 15 additions & 16 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
import { BrowserRouter, Route, Routes } from 'react-router-dom';
import Home from './components/Home';
import Wardrobe from './components/Wardrobe';
import Calendar from './components/Calendar';
import Community from './components/Community';
import Profile from './components/Profile';

import HeaderComponent from './components/HeaderComponent'
import {BrowserRouter} from 'react-router-dom'
import './App.css';
import LeftComponent from './components/LeftComponent';
import RightComponentCalendar from './components/RightComponentCalendar';
import RightComponentCommunity from './components/RightComponentCommunity';
import CenterdCloset from './components/CenteredCloset';
function App() {
return (
<div>
return (
<BrowserRouter>
<HeaderComponent/>
<LeftComponent/>
<CenterdCloset/>
<RightComponentCalendar />
<RightComponentCommunity />
<Routes>
<Route path='/' element={<Home></Home>}/>
<Route path='/Wardrobe' element={<Wardrobe></Wardrobe>}/>
<Route path='/Calendar' element={<Calendar></Calendar>}/>
<Route path='/Community' element={<Community></Community>}/>
<Route path='/Profile' element={<Profile></Profile>}/>
</Routes>
</BrowserRouter>
</div>
)
)
}

export default App;
12 changes: 12 additions & 0 deletions src/components/Calendar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from 'react';
import NavBar from './secondary/NavBar';

const Calendar = () => {
return (
<div className='col-12'>
<NavBar/>
</div>
);
}

export default Calendar;
19 changes: 0 additions & 19 deletions src/components/Carousels/CarouselPants.js

This file was deleted.

19 changes: 0 additions & 19 deletions src/components/Carousels/CarouselShirt.js

This file was deleted.

5 changes: 0 additions & 5 deletions src/components/CenteredCloset.css

This file was deleted.

20 changes: 0 additions & 20 deletions src/components/CenteredCloset.jsx

This file was deleted.

11 changes: 11 additions & 0 deletions src/components/Community.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from 'react';
import NavBar from './secondary/NavBar';
const Community = () => {
return (
<div className='col-12'>
<NavBar/>
</div>
);
}

export default Community;
20 changes: 0 additions & 20 deletions src/components/HeaderComponent.css

This file was deleted.

22 changes: 0 additions & 22 deletions src/components/HeaderComponent.jsx

This file was deleted.

43 changes: 43 additions & 0 deletions src/components/Home.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
import React from 'react';
import NavBar from './secondary/NavBar';
import Outfit from './secondary/Outfit';
import './styles/Home.css';
import { IoRestaurantSharp } from "react-icons/io5";
import { MdFamilyRestroom } from "react-icons/md";
import { GiBalloons, GiBigDiamondRing } from "react-icons/gi";
import { PiPants } from "react-icons/pi";
import { FaClock } from "react-icons/fa";

const Home = () => {
return (
<div className='col-12'>
<div className='col-12'>
<NavBar/>
</div>
<div className='row container-fluid'>
<div className='col-sm-6 offset-sm-3 col-md-4 offset-md-4 col-lg-2 offset-lg-3 mt-5'>
<Outfit/>
</div>
<div className='row col-4 offset-2 mt-5'>
<div className='col-6 offset-3 mb-2 p-3 recommendations'>
<p><b>Collections</b></p>
<a href="/Community" className="custom-link"><b><IoRestaurantSharp size={24}/> BBQ</b></a>
<a href="/Community" className="custom-link"><b><MdFamilyRestroom size={24}/> Familiy</b></a>
<a href="/Community" className="custom-link"><b><GiBalloons size={24}/> Festival</b></a>
</div>
<div className='col-6 offset-3 mt-2 p-3 recommendations'>
<p><b>Community Ideas</b></p>
<a href="/Community" className="custom-link"><b><PiPants size={24}/> Bottoms</b></a>
<a href="/Community" className="custom-link"><b><GiBigDiamondRing size={24}/> Wedding Time</b></a>
<a href="/Community" className="custom-link"><b><FaClock size={24}/> Upcoming Events</b></a>
</div>
</div>
</div>


</div>

);
}

export default Home;
19 changes: 0 additions & 19 deletions src/components/LeftComponent.css

This file was deleted.

Loading

0 comments on commit 9e60bb5

Please sign in to comment.