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

commit init #32

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
114 changes: 99 additions & 15 deletions package-lock.json

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

9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@
"lint": "next lint"
},
"dependencies": {
"react": "^18",
"react-dom": "^18",
"next": "14.0.4"
"next": "14.0.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-slick": "^0.30.2",
"slick-carousel": "^1.8.1",
"swiper": "^11.1.4"
},
"devDependencies": {
"eslint": "^8",
Expand Down
Binary file added public/about.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/apple.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/brands.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/contact.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/hero.gif
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/hero2.gif
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/hero3.gif
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/home.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/ios.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/menu.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/noavatar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
7 changes: 7 additions & 0 deletions src/app/(auth)/login/page.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
const LoginPage = () => {
return (
<div>LoginPage</div>
)
}

export default LoginPage
Empty file.
61 changes: 61 additions & 0 deletions src/app/about/about.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
.container {
display: flex;
gap: 100px;
}

.textContainer {
flex: 1;
display: flex;
flex-direction: column;
gap: 50px;
}

.subtitle{
color:var(--btn)
}

.title{
font-size: 54px;
}

.desc{
font-size: 15px;
font-weight: 300;
}

.boxes{
display: flex;
align-items: center;
justify-content: space-between;
}

.box{
display: flex;
flex-direction: column;
gap: 10px;
}

.box h1{
color: var(--btn);
}

.imgContainer {
flex: 1;
position: relative;
}

.img{
object-fit: contain;
}

@media (max-width: 768px) {
.container {
flex-direction: column;
text-align: center;
}

.boxes{
flex-direction: column;
gap: 50px;
}
}
50 changes: 50 additions & 0 deletions src/app/about/page.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
import Image from "next/image";
import styles from "./about.module.css";

export const metadata = {
title: "About Page",
description: "About description",
};


const AboutPage = () => {

return (
<div className={styles.container}>
<div className={styles.textContainer}>
<h2 className={styles.subtitle}>Welcome to ParkEase!</h2>
<h1 className={styles.title}>
We are all about making parking hassle-free and efficient for all.
</h1>
<p className={styles.desc}>
ParkEase was born out of the frustration of finding and paying for parking in busy urban areas.
With a focus on user convenience and security, ParkEase was developed to streamline the parking process and enhance the overall experience.
</p>
<div className={styles.boxes}>
<div className={styles.box}>
<h1>100%</h1>
<p>Transparent pricing with no hidden fees</p>
</div>
<div className={styles.box}>
<h1>95%</h1>
<p>Of users find a parking spot within 5 minutes</p>
</div>
<div className={styles.box}>
<h1>1 K+</h1>
<p>Parking spots monitored in real-time</p>
</div>
</div>
</div>
<div className={styles.imgContainer}>
<Image
src="/about.png"
alt="About Image"
fill
className={styles.img}
/>
</div>
</div>
);
};

export default AboutPage;
7 changes: 7 additions & 0 deletions src/app/admin/page.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
const AdminPage = () => {
return (
<div>AdminPage</div>
)
}

export default AdminPage
Loading