Skip to content
Merged
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
49 changes: 49 additions & 0 deletions LandingPage/Haris-Mohanty/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Landing Page (Tour & travel) : ExploreX

ExploreX is a dynamic and user-friendly travel platform that caters to both seasoned travelers and those embarking on their very first adventure. This project was created using a combination of cutting-edge technologies including React, Bootstrap, HTML, CSS, and JavaScript to deliver a seamless and visually appealing experience for all users.

## Key Features

- **User-Friendly Website**: ExploreX provides an easy-to-navigate website with a modern and intuitive design.

- **Connect with Fellow Travelers**: Join a vibrant community of like-minded individuals, share your travel experiences, and draw inspiration from others' journeys.

- **Stay Informed**: Stay up-to-date with the latest travel trends, tips, and insights to make the most out of your adventures.

- **Responsive Design**: Our web-based interface works seamlessly on both desktop and mobile devices, ensuring that you have access to your travel plans on the go.

## Technologies Used

- **React.js**: We utilized the power of React.js to create a dynamic and interactive user interface that enhances your travel planning experience.

- **Bootstrap**: Bootstrap was employed for its responsive design components and extensive CSS framework, ensuring a visually appealing and consistent look and feel.

- **HTML5 & CSS**: These core web technologies were used to structure and style the website, providing a solid foundation for a great user experience.

- **JavaScript**: JavaScript was used to add interactivity and functionality to the site, creating a dynamic and engaging environment.

## Get Started Setup

Ready to start your travel adventure with ExploreX? Follow these simple steps:

1. Clone the repository to your local machine.
2. Navigate to the project directory.
3. Open the `index.html` file in your web browser to explore the ExploreX website.
4. Connect with other travelers, share your experiences, and get inspired for your next journey!

## ExploreX Community

We encourage you to engage with our growing community of travel enthusiasts. Follow us on social media and use the hashtags #ExploreX, #Travel, #Wanderlust, and #Adventure to share your experiences and stay connected with fellow travelers.

## Contributing

We welcome contributions to make ExploreX even better. If you have ideas, bug fixes, or improvements to suggest, please open an issue or submit a pull request.

## License

This project is licensed under the MIT License.

Thank you for choosing ExploreX as your travel companion. Happy exploring!

## Visit
https://exploreex.netlify.app/
Binary file added LandingPage/Haris-Mohanty/favicon.ico
Binary file not shown.
68 changes: 68 additions & 0 deletions LandingPage/Haris-Mohanty/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<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="manifest" href="%PUBLIC_URL%/manifest.json" />
<!-- FONT AWESOME CDN -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>

<!-- GOOGLE FONT START -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Sofia"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Audiowide"
/>
<link
href="https://fonts.googleapis.com/css2?family=Lato:ital@1&family=Roboto&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap"
rel="stylesheet"
/>
<!-- GOOGLE FONT END -->
<!-- BOOTSTRAP CSS CDN LINK START -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous"
/>
<!-- BOOTSTRAP CSS CDN LINK END -->

<title>ExploreX</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
<!-- BOOTSTRAP JS CDN LINK START -->
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.min.js"
integrity="sha384-fbbOQedDUMZZ5KreZpsbe1LCZPVmfTnH7ois6mU1QK+m14rQ1l2bGBq41eYeM/fS"
crossorigin="anonymous"
></script>
<!-- BOOTSTRAP JS CDN LINK END -->
</html>
Loading