Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Commit

Permalink
add about and our team page
Browse files Browse the repository at this point in the history
  • Loading branch information
soniyaprasad77 committed May 18, 2024
1 parent 60926cc commit 81b9feb
Show file tree
Hide file tree
Showing 16 changed files with 303 additions and 224 deletions.
14 changes: 5 additions & 9 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ body {

body {
background-color: #FFFFFF;
background-image: url("./Assets/backgroundImage.webp");
}

nav {
Expand Down Expand Up @@ -107,10 +108,9 @@ nav {
}

.primary-text {
font-size: clamp(1rem, 3vw, 1.5rem);
max-width: 500px;
color: #6a6a6a;
margin: 1.5rem 0rem;
margin: 0.6rem 0rem;
}

.secondary-button {
Expand Down Expand Up @@ -139,22 +139,19 @@ nav {
}

.about-section-container {
margin-top: 20rem;
margin-top: 35rem;
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
}

.about-background-image-container {
position: absolute;
left: -150px;
z-index: -2;
}


.about-section-image-container {
flex: 0.9;
margin-right: 1rem;
margin: rem;
}

.about-section-text-container {
Expand All @@ -167,7 +164,6 @@ nav {
.primary-subheading {
font-weight: 700;
color: #fe9e0d;
font-size: 1.15rem;
}

.about-buttons-container {
Expand Down
16 changes: 9 additions & 7 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,19 @@ import "./App.css";
import { Outlet } from "react-router-dom";
import Footer from "./Components/Footer.js";
import Navbar from "./Components/Navbar.js";
import backgroundImg from "./Assets/backgroundImage.webp"

function App() {
return (
<>
<div className="App flex flex-col">
<Navbar/>

<Outlet />

<Footer />
</div>
<div
className="App flex flex-col">
<Navbar />

<Outlet />

<Footer />
</div>
</>
);
}
Expand Down
Binary file added src/Assets/TeamMemberPhotos/Soniya.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 src/Assets/TeamMemberPhotos/deepesh.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 src/Assets/TeamMemberPhotos/priyansu.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 src/Assets/about-background-image.png
Binary file not shown.
Binary file added src/Assets/aboutvid.mp4
Binary file not shown.
Binary file added src/Assets/backgroundImage.webp
Binary file not shown.
Binary file removed src/Assets/home-banner-image.png
Binary file not shown.
39 changes: 22 additions & 17 deletions src/Components/About.js
Original file line number Diff line number Diff line change
@@ -1,33 +1,38 @@
import React from "react";
import AboutBackground from "../Assets/about-background.png";
import AboutBackgroundImage from "../Assets/about-background-image.png";
import { BsFillPlayCircleFill } from "react-icons/bs";
import video from "../Assets/aboutvid.mp4";
import { Link } from "react-router-dom";

const About = () => {
return (
<div className="about-section-container mt-96 " id="about">
<div className="about-background-image-container">
<img src={AboutBackground} alt="" />
</div>
<div className="about-section-image-container">
<img src={AboutBackgroundImage} alt="" />
<div className="about-section-container gap-0" id="about">
<div className="w-7/12 flex pl-32 rounded-lg">
<video
className=" w-10/12 h-fit justify-center rounded-lg"
src={video}
autoPlay
muted
loop
/>
</div>
<div className="about-section-text-container">
<p className="primary-subheading">About</p>
<h1 className="primary-heading">Event budget Planner</h1>
<h1 className="primary-heading">EventPlanner</h1>
<p className="primary-text">
The Budget Event Planner is a web application designed to help users
plan their events within a specified budget and time frame.
To enhance the Tri-Valley's official website and boost local business
tourism, our mission is to address existing technology limitations by
integrating Generative AI or LLM agents for streamlined trip
management.
</p>
<p className="primary-text">
The application allows users to input their budget and the duration of
their event in days. Based on these inputs, the application generates
a customized event plan that optimizes the allocation of the budget
across various aspects of the event, such as venue, food,
transportation, and activities.
By adding an Events tab and offering one-click access to diverse
events, we aim to increase tourism by up to 16.7%, injecting vitality
into the local economy and supporting businesses.
</p>
<div className="about-buttons-container">
<button className="secondary-button">Learn More</button>
<Link to="/events">
<button className="secondary-button">Go to Events</button>
</Link>
<button className="watch-video-button">
<BsFillPlayCircleFill /> Watch Video
</button>
Expand Down
Loading

0 comments on commit 81b9feb

Please sign in to comment.