-
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into home-page
- Loading branch information
Showing
7 changed files
with
217 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Code of Conduct 🌟 | ||
|
||
We believe in creating a welcoming, inclusive environment for everyone. Please be kind, humble, and respectful to others. Let's work together with compassion and understanding to build something meaningful. ❤️ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,11 @@ | |
|
||
Welcome to the **Uttarakhand Culture Project**! This platform is dedicated to preserving and celebrating the rich cultural heritage of Uttarakhand. We aim to address the growing concern of the younger generation losing touch with their cultural roots by safeguarding the traditional rituals, deities, and unique practices of Uttarakhand. Together, we can ensure this cultural treasure is passed down to future generations. 🌿 | ||
|
||
Whether you're a coder or a cultural enthusiast, **we need your help**! Your contributions—big or small—are invaluable in building this platform. Let’s work together to bridge the gap and keep our heritage alive! | ||
Whether you're a coder or a cultural enthusiast, **we need your help**! Your contributions—big or small—are invaluable in building this platform. Let’s work together to bridge the gap and keep our heritage alive! 🌱✨ | ||
|
||
If you have any questions, doubts, or suggestions about contributing (or anything else), feel free to ping me on [LinkedIn](https://www.linkedin.com/in/ajaynegi45/) or [Twitter](https://x.com/ajaynegi45) anytime. I'll do my best to reply as quickly as possible. | ||
|
||
We're all about **quality over quantity** here, so even your smallest, meaningful contribution will make a bigger impact than something large but less thoughtful. Let's create something special together! 🙌 | ||
|
||
## How You Can Contribute 👀 | ||
|
||
|
@@ -35,7 +39,9 @@ You don’t need to be a developer to contribute! Here's how you can help: | |
Your creativity is welcome! Share design suggestions to improve the website’s aesthetic. | ||
|
||
- **Gather Cultural Content** | ||
Choose an aspect of Uttarakhand’s culture—whether it’s history, traditions, or natural beauty—and gather authentic information. Be sure to cite your sources. If the information is personal or local knowledge, please mention that too. 📝 | ||
Choose an aspect of Uttarakhand’s culture—whether it’s history, traditions, or natural beauty—and gather authentic information. Be sure to cite your sources. If the information is personal or local knowledge, please mention that too. 📝 | ||
<a href="https://ajaynegi.notion.site/Resources-f92bcb910d0544a1a8db50cc3ef79cfe" target="_blank">Explore this resource also for gathering cultural information</a> | ||
|
||
|
||
- **Suggest a Name for the Website** | ||
We're still on the hunt for the perfect name! We want something meaningful in the local language that reflects the website's mission. Got an idea? Share it via opening an [issue](https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/issues/new?assignees=&labels=status%3A+awaiting+triage&projects=&template=feature_request.yml&title=%5BFEATURE%5D+%3Cbrief+description%3E) or **[Email](mailto:[email protected])** with the subject line “Website Name Suggestion.” Your creativity could name this entire project! | ||
|
@@ -44,17 +50,24 @@ You don’t need to be a developer to contribute! Here's how you can help: | |
<br/> | ||
|
||
## Getting Started ✍🏻 | ||
# Getting Started ✍🏻 | ||
|
||
Even if you’re new to open source, contributing is easy! Follow the steps below to join us: | ||
|
||
### Prerequisites | ||
## Prerequisites 🌐 | ||
|
||
Before diving into the project, make sure you’ve got the following tools ready to go on your machine: | ||
|
||
Ensure you have the following installed on your machine: | ||
- [npm](https://www.npmjs.com/) (v6 or higher) | ||
- [Node.js](https://nodejs.org/) (v18.17.1 or higher) | ||
|
||
### How to Contribute: | ||
And hey, while you’re at it, don’t forget to: | ||
|
||
- Follow **Uttarakhand Culture** on [LinkedIn](https://www.linkedin.com/company/uttarakhandculture) to stay updated with the latest news, events, and cultural insights. | ||
- ⭐ Star the [repository](https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI) and show your support for preserving this beautiful heritage! | ||
|
||
|
||
## How to Contribute: | ||
|
||
#### Step 1. Fork the Repository 🍴 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
import Link from 'next/link'; | ||
|
||
const Custom404 = () => { | ||
return ( | ||
<div style={{ | ||
display: 'flex', | ||
flexDirection: 'column', | ||
alignItems: 'center', | ||
justifyContent: 'center', | ||
height: '70vh', | ||
backgroundColor: 'rgba(255, 255, 255, 0.8)', | ||
color: '#000000', | ||
fontFamily: 'Arial, sans-serif', | ||
textAlign: 'center', | ||
padding: '40px', | ||
boxSizing: 'border-box', | ||
borderRadius: '10px', | ||
backdropFilter: 'blur(10px)', | ||
width: '90%', | ||
maxWidth: '900px', | ||
margin: '0 auto', | ||
}}> | ||
<h1 style={{ | ||
fontSize: '72px', | ||
fontWeight: 'bold', | ||
marginBottom: '20px', | ||
textShadow: '1px 1px 2px rgba(0, 0, 0, 0.1)', | ||
}}> | ||
404 | ||
</h1> | ||
<h2 style={{ | ||
fontSize: '36px', | ||
marginBottom: '10px', | ||
color: '#333333', | ||
}}> | ||
Page Not Found | ||
</h2> | ||
<p style={{ | ||
fontSize: '18px', | ||
marginBottom: '30px', | ||
maxWidth: '600px', | ||
lineHeight: '1.5', | ||
color: '#555555', | ||
}}> | ||
Sorry, the page you are looking for does not exist. Please check the URL or return to the home page. | ||
</p> | ||
<Link href="/" style={{ | ||
padding: '10px 20px', | ||
backgroundColor: '#000000', | ||
color: '#ffffff', | ||
borderRadius: '5px', | ||
textDecoration: 'none', | ||
fontWeight: 'bold', | ||
transition: 'background-color 0.3s', | ||
}}> | ||
Go back to Home | ||
</Link> | ||
<p style={{ | ||
marginTop: '20px', | ||
color: '#777777', | ||
fontSize: '14px', | ||
}}> | ||
Or you can try searching for what you need. | ||
</p> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Custom404; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -151,4 +151,4 @@ export default function Home() { | |
|
||
</> | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
import Link from 'next/link'; | ||
|
||
const Custom404 = () => { | ||
return ( | ||
<div style={{ | ||
display: 'flex', | ||
flexDirection: 'column', | ||
alignItems: 'center', | ||
justifyContent: 'center', | ||
height: '70vh', | ||
backgroundColor: 'rgba(255, 255, 255, 0.8)', | ||
color: '#000000', | ||
fontFamily: 'Arial, sans-serif', | ||
textAlign: 'center', | ||
padding: '40px', | ||
boxSizing: 'border-box', | ||
borderRadius: '10px', | ||
backdropFilter: 'blur(10px)', | ||
width: '90%', | ||
maxWidth: '900px', | ||
margin: '0 auto', | ||
}}> | ||
<h1 style={{ | ||
fontSize: '72px', | ||
fontWeight: 'bold', | ||
marginBottom: '20px', | ||
textShadow: '1px 1px 2px rgba(0, 0, 0, 0.1)', | ||
}}> | ||
Sorry! | ||
</h1> | ||
<h2 style={{ | ||
fontSize: '36px', | ||
marginBottom: '10px', | ||
color: '#333333', | ||
}}> | ||
Page Under Construction | ||
</h2> | ||
<p style={{ | ||
fontSize: '18px', | ||
marginBottom: '30px', | ||
maxWidth: '600px', | ||
lineHeight: '1.5', | ||
color: '#555555', | ||
}}> | ||
Sorry, this page is currently under construction. We’re working hard to get it ready for you. | ||
</p> | ||
<Link href="/" style={{ | ||
padding: '10px 20px', | ||
backgroundColor: '#000000', | ||
color: '#ffffff', | ||
borderRadius: '5px', | ||
textDecoration: 'none', | ||
fontWeight: 'bold', | ||
transition: 'background-color 0.3s', | ||
}}> | ||
Go back to Home | ||
</Link> | ||
<p style={{ | ||
marginTop: '20px', | ||
color: '#777777', | ||
fontSize: '14px', | ||
}}> | ||
Or you can try searching for what you need. | ||
</p> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Custom404; |