Skip to content

Commit f509ed3

Browse files
committed
Theme Rewamp
1 parent d8dfb31 commit f509ed3

25 files changed

+879
-122
lines changed

CNAME

-1
This file was deleted.

index.html

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@
1414
} else {
1515
document.querySelector('body').classList.remove('sidebar-expanded');
1616
}
17-
</script>
17+
</script>
18+
<script>
19+
(function(){var r,d=document,gt=d.getElementById,cr=d.createElement,tg=d.getElementsByTagName,id="aidaform-embed";if(!gt.call(d,id)){r=cr.call(d,"script");r.id=id;r.src="https://embed.aidaform.com/embed.js";(d.head || tg.call(d,"head")[0]).appendChild(r);}})()
20+
</script>
1821
<div id="root"></div>
1922
<script type="module" src="/src/main.jsx"></script>
2023
</body>

package-lock.json

+37-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "simple-light-react",
33
"version": "0.1.0",
4-
"homepage": "https:/namli1.github.io",
4+
"homepage": "info.wrtw.de",
55
"scripts": {
66
"predeploy": "npm run build",
77
"deploy": "gh-pages -d dist",
@@ -14,8 +14,9 @@
1414
"aos": "^3.0.0-beta.6",
1515
"react": "^17.0.2",
1616
"react-dom": "^17.0.2",
17-
"react-flatpickr": "^3.10.7",
17+
"react-flatpickr": "^3.10.7",
1818
"react-router-dom": "^6.2.1",
19+
"react-router-hash-link": "^2.4.3",
1920
"react-transition-group": "^4.4.1",
2021
"sticky-js": "^1.3.0"
2122
},

src/App.jsx

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ import React, { useEffect } from 'react';
22
import {
33
Routes,
44
Route,
5-
useLocation
5+
useLocation,
6+
Link
67
} from 'react-router-dom';
78

9+
import 'aos/dist/aos.css';
810
import './css/style.scss';
911

1012
import AOS from 'aos';
@@ -13,6 +15,8 @@ import Home from './pages/Home';
1315
import SignIn from './pages/SignIn';
1416
import SignUp from './pages/SignUp';
1517
import ResetPassword from './pages/ResetPassword';
18+
import PrivacyPolicy from './pages/PrivacyPolicy';
19+
import PrivacyPolicyApp from './pages/PrivacyPolicyApp';
1620

1721
function App() {
1822

@@ -40,6 +44,8 @@ function App() {
4044
<Route path="/signin" element={<SignIn />} />
4145
<Route path="/signup" element={<SignUp />} />
4246
<Route path="/reset-password" element={<ResetPassword />} />
47+
<Route path="/privacy-policy" element={<PrivacyPolicy />} />
48+
<Route path="/privacy-policy-app" element={<PrivacyPolicyApp />} />
4349
</Routes>
4450
</>
4551
);

src/css/style.scss

+4
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,8 @@ $aos-distance: 10px;
4949
width: 100%;
5050
height: 100%;
5151
border: none;
52+
}
53+
54+
.theme-background {
55+
background-color: rgb(255, 251, 233);
5256
}

src/css/tailwind.config.js

+27
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,33 @@ module.exports = {
4141
},
4242
red: {
4343
100: "#AA381E",
44+
},
45+
primary: {
46+
100: "#fffbe9",
47+
200: "#fff6cc",
48+
300: "#ffec99",
49+
400: "#ffe366",
50+
600: "#cca700",
51+
700: "#997d00",
52+
},
53+
brown: {
54+
100: "#a88289",
55+
200: "#85636a", //"#bf7384",
56+
300: "#9e5c6a",
57+
400: "#8a4957",
58+
500: "#69303c",
59+
600: "#4C232C",
60+
700: "#34181e",
61+
800: "#11080a",
62+
},
63+
green: {
64+
100: "#9dc8bb",
65+
200: "#7cb6a4",
66+
300: "#5ca38e",
67+
400: "#539380",
68+
500: "#407263",
69+
600: "#365f53",
70+
800: "#254139",
4471
}
4572
},
4673
boxShadow: {

src/images/destination.svg

+48
Loading

src/images/instagram-logo.svg

+6
Loading

src/images/screenshot-route.png

1.2 MB
Loading

src/images/screenshot.png

552 KB
Loading

src/images/testimonial.jpeg

1.95 MB
Loading

src/main.jsx

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
import React from 'react'
22
import ReactDOM from 'react-dom'
3-
import { BrowserRouter as Router, Route } from 'react-router-dom'
3+
import { HashRouter as Router } from 'react-router-dom'
44
import App from './App'
55

6+
67
ReactDOM.render(
78
<React.StrictMode>
8-
<Router>
9-
<Route exact path='/'>
10-
<App />
11-
</Route>
9+
<Router basename={process.env.PUBLIC_URL}>
10+
<App />
1211
</Router>
1312
</React.StrictMode>,
1413
document.getElementById('root')

src/pages/Home.jsx

+7-3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@ import FeaturesBlocks from '../partials/FeaturesBlocks';
77
import Testimonials from '../partials/Testimonials';
88
import Newsletter from '../partials/Newsletter';
99
import Footer from '../partials/Footer';
10+
import Download from '../partials/Download';
11+
12+
import '.././css/style.scss';
1013

1114
function Home() {
1215
return (
13-
<div className="flex flex-col min-h-screen overflow-hidden">
16+
<div className="flex flex-col min-h-screen overflow-hidden theme-background">
1417

1518
{/* Site header */}
1619
{/* <Header /> */}
@@ -22,13 +25,14 @@ function Home() {
2225
<HeroHome />
2326
<FeaturesHome />
2427
<FeaturesBlocks />
25-
<Testimonials />
28+
{/* <Testimonials /> */}
29+
{/* <Download /> */}
2630
<Newsletter />
2731

2832
</main>
2933

3034
{/* Site footer */}
31-
{/* <Footer /> */}
35+
<Footer />
3236

3337
</div>
3438
);

0 commit comments

Comments
 (0)