This repository has been archived by the owner on Jan 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat/Meta Information & Documentation (#47)
* chore: meta tags added * chore: code documentation added * chore: readme file updated * chore: contributing guide updated
- Loading branch information
1 parent
06c2393
commit 9428f57
Showing
24 changed files
with
240 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,47 @@ | ||
# Contributing to Xilinx Nexus SRM Website | ||
|
||
Thank you for considering contributing to Xilinx Nexus SRM Website! This document provides some guidelines to help you get started. | ||
|
||
## Getting Started | ||
|
||
Before contributing to Xilinx Nexus SRM Website, please ensure that you have read and understood our [README.md](README.md) file. | ||
|
||
## How to Contribute | ||
|
||
Contributions can be made to the website in the following ways: | ||
|
||
- Reporting a bug | ||
- Submitting a feature request | ||
- Proposing a code change | ||
|
||
### Reporting Bugs | ||
|
||
If you encounter any bugs or issues while using the website, please open a new issue in our [issue tracker](https://github.com/kunalkeshan/Xilinx-Homepage/issues) and include the following details: | ||
|
||
- A clear and descriptive title | ||
- A description of the issue | ||
- Steps to reproduce the issue | ||
- Expected and actual behavior | ||
|
||
### Submitting a Feature Request | ||
|
||
If you have an idea for a new feature or improvement to the website, please open a new issue in our [issue tracker](https://github.com/kunalkeshan/Xilinx-Homepage/issues) and include the following details: | ||
|
||
- A clear and descriptive title | ||
- A description of the feature or improvement | ||
- Why this feature or improvement would be useful | ||
|
||
### Proposing a Code Change | ||
|
||
If you would like to propose a code change, please follow these steps: | ||
|
||
1. Fork the repository and create a new branch. | ||
2. Make your changes and commit them to your branch. | ||
3. Test your changes thoroughly. | ||
4. Submit a pull request. | ||
|
||
When submitting a pull request, please ensure that you include a clear and descriptive title and description of your changes. | ||
|
||
## License | ||
|
||
By contributing to Xilinx Nexus SRM Website, you agree that your contributions will be licensed under the [MIT License](LICENSE). |
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 |
---|---|---|
@@ -1,3 +1,80 @@ | ||
Reference Design: https://allora.webflow.io/#work | ||
# Xilinx Nexus SRM | ||
|
||
Data Referece: https://faisalnazir7.github.io/xilinxSRM/index.html | ||
<p align="center"> | ||
<img src="./public/images/thumbnail.png" alt="Xilinx Nexus SRM" width="60%" /> | ||
</p> | ||
|
||
**Table of Contents**: | ||
|
||
- [Preface](#-preface) | ||
- [Getting Started](#-getting-started) | ||
- [Clone this Repository](#clone-this-repository) | ||
- [Install Packages & Dependencies](#installing-packages--dependencies) | ||
- [Start Application](#start-application) | ||
- [Contributing](#-contributing) | ||
- [Project Contributors](#project-contributors) | ||
- [License](#-license) | ||
|
||
## 💡 Preface | ||
|
||
The Xilinx NEXUS is a program initiated by SRMIST to support Women in Technology (WIT) programs within the university. This innovative program is made possible by grants from Xilinx, Inc. | ||
|
||
This static website is developed using React, Typescript and Tailwind CSS. | ||
|
||
## 🚀 Getting Started | ||
|
||
### Clone this Repository | ||
|
||
```bash | ||
git clone https://github.com/kunalkeshan/Xilinx-Homepage.git | ||
``` | ||
|
||
### Installing Packages & Dependencies | ||
|
||
- Install using Yarn. | ||
|
||
```bash | ||
yarn | ||
``` | ||
|
||
- Install using NPM. | ||
|
||
```bash | ||
npm install | ||
``` | ||
|
||
### Start Application | ||
|
||
Start using Yarn. | ||
|
||
```bash | ||
yarn start | ||
``` | ||
|
||
Start using NPM. | ||
|
||
```bash | ||
npm start | ||
``` | ||
|
||
## 🤖 Contributing | ||
|
||
Anybody is free to contribute to this repo. If you think that you can improve the model or the gui, follow the contributing guidelines mentioned at [CONTRIBUTING.md](/CONTRIBUTING.md) | ||
|
||
### Project Contributors | ||
|
||
<a href="https://github.com/kunalkeshan/Xilinx-Homepage/graphs/contributors"> | ||
<img src="https://contrib.rocks/image?repo=kunalkeshan/Xilinx-Homepage" /> | ||
</a> | ||
|
||
## 🔐 License | ||
|
||
This project is licensed under the [MIT License](/LICENSE). | ||
|
||
### Forking this Repo? | ||
|
||
Many people have contacted us asking if they can use this code for their own websites. The answer to that question is usually "yes", with attribution. There are some cases, such as using this code for a business or something that is greater than a personal project, that we may be less comfortable saying yes to. If in doubt, please don't hesitate to ask us. | ||
|
||
We value keeping this project open source, but as you all know, plagiarism is bad. We actively spend a non-negligible amount of effort developing, designing, and trying to perfect this iteration of our project, and we are proud of it! All we ask is to not claim this effort as your own. | ||
|
||
So, feel free to fork this repo. If you do, please just give us proper credit by linking back to this repo, [https://github.com/kunalkeshan/Xilinx-Homepage](https://github.com/kunalkeshan/Xilinx-Homepage). Refer to this handy [quora](https://github.com/kunalkeshan/Xilinx-Homepage) post if you're not sure what to do. Thanks! |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
/** | ||
* Event Card Component | ||
*/ | ||
|
||
import React from 'react'; | ||
import { Event } from '../../data/events'; | ||
|
||
|
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
/** | ||
* Gallery Image Card Component | ||
*/ | ||
|
||
import React from 'react'; | ||
import { Image } from '../../data/gallery'; | ||
|
||
|
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
/** | ||
* Goal Card Component | ||
*/ | ||
|
||
import React from 'react'; | ||
import { IMission } from '../../data/goals'; | ||
|
||
|
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
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
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
/** | ||
* YouTube Embed Component | ||
*/ | ||
|
||
import React from 'react'; | ||
|
||
interface YouTubeEmbedProps { | ||
|
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
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
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
/** | ||
* Not Found Page | ||
*/ | ||
|
||
import { Link } from 'react-router-dom'; | ||
|
||
const NotFoundPage = () => { | ||
|
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
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
/** | ||
* Polytechnic Students Event Page | ||
*/ | ||
|
||
const PolytechnicStudentsEventsPage = () => { | ||
const ACTIVITIES = [ | ||
{ | ||
|
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