Skip to content

Commit

Permalink
Merge pull request #138 from Varsani2520/contact-page
Browse files Browse the repository at this point in the history
Contact page
  • Loading branch information
PatilHarshh authored May 25, 2024
2 parents cd67740 + 41a4a2e commit 8b32d0f
Show file tree
Hide file tree
Showing 28 changed files with 1,647 additions and 1,986 deletions.
Binary file added client/dist/assets/codewave-b6bf4c85.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 client/dist/assets/facebook-2f54914b.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 client/dist/assets/google-b9f2dce9.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 client/dist/assets/hero-39b48dbc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
207 changes: 207 additions & 0 deletions client/dist/assets/index-ae5751a1.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions client/dist/assets/index-dc009329.css

Large diffs are not rendered by default.

Binary file added client/dist/assets/instagram-496c0b62.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 client/dist/assets/job-7a3982a9.jpg
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 client/dist/assets/linkedin-7dcbc614.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 client/dist/assets/office-095f6b2e.jpg
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 client/dist/assets/spotify-a4ba38da.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 client/dist/assets/twitter-e6ca9110.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 client/dist/assets/userprofile-028bf096.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 client/dist/assets/whatsapp-e4e23ecf.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 client/dist/assets/youtube-558740da.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions client/dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<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>Job Finder | Find Dream Job</title>
<script type="module" crossorigin src="/assets/index-ae5751a1.js"></script>
<link rel="stylesheet" href="/assets/index-dc009329.css">
</head>
<body>
<div id="root"></div>

</body>
</html>
1 change: 1 addition & 0 deletions client/dist/vite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 1 addition & 4 deletions client/index.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
<!DOCTYPE html>
<html lang="en">

<head>
<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>Job Finder | Find Dream Job</title>
</head>

<body>
<div id="root"></div>
<script type="module" src="./src/main.jsx"></script>
</body>

</html>
</html>
2,998 changes: 1,165 additions & 1,833 deletions client/package-lock.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"@mui/styled-engine-sc": "^6.0.0-alpha.18",
"@reduxjs/toolkit": "^1.9.5",
"axios": "^1.4.0",
"lottie-react": "^2.4.0",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down
13 changes: 13 additions & 0 deletions client/public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<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>Job Finder | Find Dream Job</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="../src/main.jsx"></script>
</body>
</html>
3 changes: 3 additions & 0 deletions client/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import About from "./components/About/About";

import { useEffect, useState } from "react";
import Loader from "./components/Loader";
import Contact from "./components/Contact/contact";

function Layout() {
const { user } = useSelector((state) => state.user);
Expand Down Expand Up @@ -56,6 +57,8 @@ function App() {
<Routes>
<Route element={<Layout />}>
<Route element={<About />} path="/about" />
<Route element={<Contact />} path="/contact-us" />

<Route
path='/'
element={
Expand Down
62 changes: 62 additions & 0 deletions client/src/components/Contact/Contact.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
"use client";
import React, { useEffect, useState } from "react";
import {
Box,
Container,
Grid,
Typography,
TextField,
Button,
} from "@mui/material";
import Lottie from "lottie-react";
import contactAnimation from "../lottie-animation/contactAnimation.json";
const Contact = () => {

return <div >
<Box sx={{ mt: "2rem", mb: '50px' }}>
<Grid container spacing={2}>
<Grid item xs={12} md={6}>
<Lottie animationData={contactAnimation} style={{ height: '500px' }} />
</Grid>
<Grid
item
xs={12}
md={6}
sx={{ display: "flex", alignItems: "center" }}
>
<form >
<TextField
label="Name"
fullWidth
margin="normal"

/>
<TextField
label="Email"
fullWidth
margin="normal"

/>
<TextField
label="Message"
fullWidth
multiline
rows={4}
margin="normal"

/>
<Button
variant="contained"
color="primary"
sx={{ mt: "1rem", fontSize: "1.2rem" }}
type="submit"
>
Submit
</Button>
</form>
</Grid>
</Grid>
</Box></div>;
};

export default Contact;
Loading

0 comments on commit 8b32d0f

Please sign in to comment.