├── .babelrc
├── .eslintrc.json
├── .gitignore
├── .husky
└── pre-commit
├── .prettierignore
├── .prettierrc
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── components
├── About
│ ├── TeamMember.tsx
│ └── card.tsx
├── PageLayout.tsx
├── home
│ ├── Events
│ │ ├── UpcomingEventCard.tsx
│ │ └── UpcomingEvents.tsx
│ ├── ExploreProjects
│ │ ├── ExploreCard.tsx
│ │ └── ExploreProjects.tsx
│ ├── HeroSection
│ │ ├── HeroSection.tsx
│ │ ├── MobileHeroSection.tsx
│ │ ├── NavBar.tsx
│ │ └── PcHeroSection.tsx
│ ├── Open-Source Programs
│ │ └── mainOpenSource.tsx
│ ├── OpenSourceProfile
│ │ └── OpenSourceProfile.tsx
│ ├── TeamSection
│ │ ├── Team.tsx
│ │ └── TeamMember.tsx
│ ├── Testimonials
│ │ └── testimonials.tsx
│ ├── Tutorial Hell
│ │ ├── go.tsx
│ │ ├── js.tsx
│ │ ├── py.tsx
│ │ └── tutorial_hell.tsx
│ ├── WhatIsClueless
│ │ └── WhatIsClueless.tsx
│ ├── WorldOfOpenSource
│ │ └── WorldOfOpenSource.tsx
│ └── lackingskills
│ │ └── lackingskills.tsx
└── shared
│ └── Footer.tsx
├── database
├── eventData.ts
├── membersData.ts
└── teamMembers.ts
├── helpers
└── helper.ts
├── interfaces
└── eventInterface.d.ts
├── lib
└── firebaseConfig.ts
├── next-env.d.ts
├── next.config.js
├── package-lock.json
├── package.json
├── pages
├── 404.tsx
├── _app.tsx
├── _document.tsx
├── about-us.tsx
├── api
│ └── hello.ts
├── coming-soon.tsx
├── contact-us.tsx
├── faq.tsx
├── index.tsx
├── privacy-policy.tsx
└── terms-conditions.tsx
├── postcss.config.js
├── public
├── About
│ ├── Bottom
│ │ ├── d3.svg
│ │ ├── ether.svg
│ │ ├── flutter.svg
│ │ ├── github.svg
│ │ ├── kubernetes.svg
│ │ ├── polygon.svg
│ │ ├── react.svg
│ │ ├── redux.svg
│ │ └── vscode.svg
│ ├── card.svg
│ ├── cardMobile.svg
│ ├── greenLine.png
│ ├── greenLineMobile.png
│ ├── right.png
│ └── vision.svg
├── ClueLess Logo with Bg.png
├── ClueLess Logo.png
├── Go-Logo_Aqua.svg
├── Gssoc.png
├── LFX.png
├── LandingPage
│ ├── 404
│ │ └── 404-img.png
│ ├── Contact
│ │ └── contact.png
│ ├── HeroSection
│ │ ├── Frame 3.svg
│ │ └── hero_line.png
│ ├── OpenSource
│ │ ├── Frame.png
│ │ ├── group111.png
│ │ ├── program.png
│ │ └── program2.png
│ ├── Shade
│ │ └── shade.png
│ ├── Testimonials
│ │ └── testimonials.svg
│ └── thanks
│ │ └── thanks-img.png
├── MLH.png
├── comingSoon
│ ├── globe.png
│ ├── img1.png
│ └── load.png
├── faq1.png
├── faq2.png
├── favicon.ico
├── flutter.webp
├── golang.png
├── golang.svg
├── line1.png
├── line2.png
├── next.svg
├── open-source-programs.svg
├── path.png
├── path2.png
├── pattern.svg
├── test.png
├── testimonial
│ ├── 0.png
│ ├── 1.png
│ ├── 2.png
│ ├── 3.png
│ ├── 4.png
│ ├── 5.png
│ └── 6.png
├── thirteen.svg
├── true-design.png
├── true-design2.png
└── vercel.svg
├── styles
├── globals.css
└── theme.ts
├── tailwind.config.js
└── tsconfig.json
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["next/babel"],
3 | "plugins": []
4 | }
5 |
--------------------------------------------------------------------------------
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": ["next"],
3 | "rules": {
4 | "react/no-unescaped-entities": 0
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 | .pnpm-debug.log*
27 |
28 | # local env files
29 | .env*.local
30 |
31 | # vercel
32 | .vercel
33 |
34 | # typescript
35 | *.tsbuildinfo
36 | next-env.d.ts
37 |
--------------------------------------------------------------------------------
/.husky/pre-commit:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 | . "$(dirname -- "$0")/_/husky.sh"
3 |
4 | npm run pre-commit
5 |
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | .git
2 | .next
3 | dist
4 | node_modules
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "trailingComma": "es5",
3 | "tabWidth": 2,
4 | "semi": true,
5 | "singleQuote": true
6 | }
7 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | We as members, contributors, and leaders pledge to make participation in our
6 | community a harassment-free experience for everyone, regardless of age, body
7 | size, visible or invisible disability, ethnicity, sex characteristics, gender
8 | identity and expression, level of experience, education, socio-economic status,
9 | nationality, personal appearance, race, religion, or sexual identity
10 | and orientation.
11 |
12 | We pledge to act and interact in ways that contribute to an open, welcoming,
13 | diverse, inclusive, and healthy community.
14 |
15 | ## Our Standards
16 |
17 | Examples of behavior that contributes to a positive environment for our
18 | community include:
19 |
20 | - Demonstrating empathy and kindness toward other people
21 | - Being respectful of differing opinions, viewpoints, and experiences
22 | - Giving and gracefully accepting constructive feedback
23 | - Accepting responsibility and apologizing to those affected by our mistakes,
24 | and learning from the experience
25 | - Focusing on what is best not just for us as individuals, but for the
26 | overall community
27 |
28 | Examples of unacceptable behavior include:
29 |
30 | - The use of sexualized language or imagery, and sexual attention or
31 | advances of any kind
32 | - Trolling, insulting or derogatory comments, and personal or political attacks
33 | - Public or private harassment
34 | - Publishing others' private information, such as a physical or email
35 | address, without their explicit permission
36 | - Other conduct which could reasonably be considered inappropriate in a
37 | professional setting
38 |
39 | ## Enforcement Responsibilities
40 |
41 | Community leaders are responsible for clarifying and enforcing our standards of
42 | acceptable behavior and will take appropriate and fair corrective action in
43 | response to any behavior that they deem inappropriate, threatening, offensive,
44 | or harmful.
45 |
46 | Community leaders have the right and responsibility to remove, edit, or reject
47 | comments, commits, code, wiki edits, issues, and other contributions that are
48 | not aligned to this Code of Conduct, and will communicate reasons for moderation
49 | decisions when appropriate.
50 |
51 | ## Scope
52 |
53 | This Code of Conduct applies within all community spaces, and also applies when
54 | an individual is officially representing the community in public spaces.
55 | Examples of representing our community include using an official e-mail address,
56 | posting via an official social media account, or acting as an appointed
57 | representative at an online or offline event.
58 |
59 | ## Enforcement
60 |
61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be
62 | reported to the community leaders responsible for enforcement at
63 | .
64 | All complaints will be reviewed and investigated promptly and fairly.
65 |
66 | All community leaders are obligated to respect the privacy and security of the
67 | reporter of any incident.
68 |
69 | ## Enforcement Guidelines
70 |
71 | Community leaders will follow these Community Impact Guidelines in determining
72 | the consequences for any action they deem in violation of this Code of Conduct:
73 |
74 | ### 1. Correction
75 |
76 | **Community Impact**: Use of inappropriate language or other behavior deemed
77 | unprofessional or unwelcome in the community.
78 |
79 | **Consequence**: A private, written warning from community leaders, providing
80 | clarity around the nature of the violation and an explanation of why the
81 | behavior was inappropriate. A public apology may be requested.
82 |
83 | ### 2. Warning
84 |
85 | **Community Impact**: A violation through a single incident or series
86 | of actions.
87 |
88 | **Consequence**: A warning with consequences for continued behavior. No
89 | interaction with the people involved, including unsolicited interaction with
90 | those enforcing the Code of Conduct, for a specified period of time. This
91 | includes avoiding interactions in community spaces as well as external channels
92 | like social media. Violating these terms may lead to a temporary or
93 | permanent ban.
94 |
95 | ### 3. Temporary Ban
96 |
97 | **Community Impact**: A serious violation of community standards, including
98 | sustained inappropriate behavior.
99 |
100 | **Consequence**: A temporary ban from any sort of interaction or public
101 | communication with the community for a specified period of time. No public or
102 | private interaction with the people involved, including unsolicited interaction
103 | with those enforcing the Code of Conduct, is allowed during this period.
104 | Violating these terms may lead to a permanent ban.
105 |
106 | ### 4. Permanent Ban
107 |
108 | **Community Impact**: Demonstrating a pattern of violation of community
109 | standards, including sustained inappropriate behavior, harassment of an
110 | individual, or aggression toward or disparagement of classes of individuals.
111 |
112 | **Consequence**: A permanent ban from any sort of public interaction within
113 | the community.
114 |
115 | ## Attribution
116 |
117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118 | version 2.0, available at
119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
120 |
121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct
122 | enforcement ladder](https://github.com/mozilla/diversity).
123 |
124 | [homepage]: https://www.contributor-covenant.org
125 |
126 | For answers to common questions about this code of conduct, see the FAQ at
127 | https://www.contributor-covenant.org/faq. Translations are available at
128 | https://www.contributor-covenant.org/translations.
129 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # How to setup ClueLess in your local system?
2 |
3 | Here are the exact steps you need to follow to run ClueLess in your local system!
4 |
5 | ## 1. Clone Repo or Download Files
6 |
7 | So, first of all you need to do is clone the [Clueless-Community/clueless-official-website](https://github.com/Clueless-Community/clueless-official-website) GitHub repository or you can also download the files.
8 |
9 | If you don't know how to clone or where to download the code the watch this video.
10 |
11 | [How to Clone a GitHub Repo](https://www.youtube.com/watch?v=CKcqniGu3tA)
12 | [Blog on the same topic, official GitHub Docs](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository)
13 |
14 | Or you can run this code in your PC/Laptop terminal
15 |
16 | ```
17 | git clone https://github.com/Clueless-Community/clueless-official-website.git
18 | ```
19 |
20 | ## 2. Installing all npm packages
21 |
22 | Then you need to navigate to the directory and run the following code. This will install all the dependencies you need.
23 |
24 | ```
25 | npm install
26 | ```
27 |
28 | ## 3. Setup helper
29 |
30 | Before setting up any API keys you need to change the helper, so that it makes request to your localhost.
31 |
32 | Go to ./helpers/template.ts .
33 |
34 | Remove everything and copy paste this code snippet.
35 |
36 | ```
37 | export const template = {
38 | templateString : "http://localhost:3000"
39 | }
40 | ```
41 |
42 | **Note** : You can have different localhost other than 3000, use that in that case.
43 |
44 | ## Setting up API Keys.
45 |
46 | This is the most important part. There are Authentication, Database, Filter & search and Map APIs that you need to setup.
47 |
48 | If you are assigned an issue mail us at **official.cluelesscommunity@gmail.com** with the PR link and your gitHub ID we will send you the credentials within 2 - 3 hours.
49 |
50 | Create **.env.local** file in the root directory with the credentials you receive.
51 |
52 | ## How can i contribute?
53 |
54 | You can contribute to this project by suggesting an enhancement, reporting a bug, and fixing documentation. Here's how to do it:
55 |
56 | - Go to [issues](https://github.com/Clueless-Community/clueless-official-website/issues/new/choose) page
57 | - Select the issue you would like to open
58 | - Use a descriptive title. It should take this format "[BUG]: Title"
59 | - Add a description explaining the issue. You should give a detailed explanation. For example, the button on the website has a bright color which makes it hard to see the text in it.
60 | - Add screenshots if available
61 | - Add a possible solution.
62 |
63 | **Never push credentials to GitHub**
64 |
65 | ## Pushing changes or making changes
66 |
67 | For pushing your updates make a new branch in this format.
68 |
69 | **(your_name)/(functionality_name)**
70 |
71 | And also describe a bit what changes made and try to attach screenshots.
72 |
73 | Make sure that you push your PR into the **dev** branch instead of **main**
74 |
75 | ## Having problem?
76 |
77 | If you face any problem you can mail us at **official.cluelesscommunity@gmail.com**.
78 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2022 Clueless Community
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | #
What is Clueless
4 |
5 | ###
Clueless is a developer community which builds developer tools with the power of open-source. We believe in the vision “Learn and Grow” and encourage & guide enthusiasts to dive deep into the world of open-source.
If you are willing to contribute, please check the guide to local system setup [here on CONTRIBUTING.md](https://github.com/Clueless-Community/clueless-official-website/blob/main/CONTRIBUTING.md).
18 |
19 | Don't forget to check the [issue](https://github.com/Clueless-Community/clueless-official-website/issues) section where we have already raised some issues for you to work on.
20 |
21 | # What do we provide?
22 |
23 | - ## Resources
24 |
25 | The Internet is flooded with so many resources that can make one confused and clueless. So we, the Clueless Community provide the best, filtered, and curated resources like YouTube videos, GitHub repositories, websites, cheatsheets, etc! You can check our resources page [here](https://clueless-resources.super.site/resources)
26 |
27 | [](https://clueless-resources.super.site/resources)
28 |
29 | - ## Discord Community
30 | We have an amazing Discord Community, where separate channels are created for different topics like web development, app development, web3, etc where you can use these respective channels to query and help others. We try to keep you updated with the latest opportunities, jobs, and hackathons, and share useful resources too.
31 |
32 | [](https://discord.gg/zrVMjGW8sB)
33 |
34 | ## Click [here](https://discord.gg/zrVMjGW8sB) to join 🚀
35 |
36 | # Projects we are working on
37 |
38 | - ## SeamLess UI
39 | The next gen UI made with simple HTML and Tailwind CSS. It's compatible with simple HTML, CSS static website or a React, Vue, Angular or Next.js Complex app. Zero JS and no-plugins installed.
40 |
41 | Click [here](https://github.com/Clueless-Community/seamless-ui) to check this amazing repository. All the changes and contributions are appreciated.
42 |
43 | - ## Datasets
44 | A GitHub repository where we have collected datasets like tech stacks, cities, colleges in India, Spotify stats, etc in different forms like arrays, JSON, and CSV which you can use for your next project.
45 |
46 | Click [here](https://github.com/Clueless-Community/Datasets) to check this amazing repository. All the changes and contributions are appreciated.
47 |
48 | - ## College API
49 | An API that gets you the list of Indian colleges and their details like city, state, and NIRF ranks. You can even filter out colleges by city and state.
50 |
51 | Check this project [this](https://github.com/Clueless-Community/collegeAPI) here!
52 |
53 | - ## Spectrum UI
54 | A collection of flutter UI components
55 |
56 | Click [here](https://github.com/Clueless-Community/Spectrum-UI) to check this amazing repository. All the changes and contributions are appreciated.
57 |
58 |
22 | {' '}
23 | which builds developer tools with the power of open-source. We
24 | believe in the vision “Learn and Grow” and encourage & guide
25 | enthusiasts to dive deep into the world of open-source.
26 |
15 | We have curated all the resources all over the internet and
16 | categorised into Tech-Stack. One Stop Solution for your development
17 | resources.
18 |
20 | Clueless is a student community which focuses on building developer
21 | tools with the power of open-source. We believe in the vision “Learn
22 | and Grow” and encourage & guide enthusiasts to dive deep into the
23 | world of open-source.
24 |
25 |
26 |
31 | {/* Blur Effect */}
32 |
39 |
40 |
41 |
46 | {/* Blur Effect */}
47 |
54 |
55 |
56 |
57 |
58 |
63 |
64 |
65 | Our Vision
66 |
67 |
68 | We believe in the motto 'Learn & Grow'. Our sole focus is to
69 | build some developer tools which will be built by developers
70 | and serve for developers.
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 | About Community.
80 |
81 |
82 | {/* Blur Effect */}
83 |
90 |
95 |
96 |
97 | Clueless in a virtual open-source community built with the motive of
98 | “Learn and Grow”. We, as a community, encourage and guide
99 | enthusiasts to dive into the world of open-source. We provide the
100 | best resources available on the internet, write blogs that helps
101 | other to explore their domain more deeply, organize events, GitHub
102 | repositories, organize hackathons, and more couniting activities
103 |
104 |
109 |
110 |
111 |
116 |
117 |
118 | Our Vision
119 |
120 |
121 | Internet is flooded with so many resources that can make one
122 | confused and clueless. So we provide the best, filtered, and
123 | curated resources like YouTube videos, GitHub repositories,
124 | websites, cheatsheets, etc!{' '}
125 |
113 |
114 |
115 |
122 | Clueless is a student community which focuses on building
123 | developer tools with the power of open-source. We believe
124 | in the vision “Learn and Grow” and encourage & guide
125 | enthusiasts to dive deep into the world of open-source.
126 |
127 |
128 |
129 |
134 |
140 | ) : (
141 |
142 | )
143 | }
144 | sx={{
145 | backgroundColor:
146 | expanded === 'panel2' ? '#7EE787' : '#17202A',
147 | }}
148 | >
149 |
154 | 2. Is your Community beginner-friendly?
155 |
156 |
157 |
158 |
165 | Our community is completely beginner-friendly. If you also
166 | want to start in tech. Reach out to our Community Members
167 | and also the community members are also super active. You
168 | will definitely get benefitted.
169 |
170 |
171 |
172 |
177 |
183 | ) : (
184 |
185 | )
186 | }
187 | sx={{
188 | backgroundColor:
189 | expanded === 'panel3' ? '#7EE787' : '#17202A',
190 | }}
191 | >
192 |
197 | 3. How do i stay up to date on the latest updates?
198 |
199 |
200 |
201 |
208 | Join our Discord and Whatsapp community group to get
209 | updated with any instant updates from our community. Also
210 | do follow our LinkedIn and Twitter handles to know about
211 | all our announcements.
212 |
213 |
214 |
215 |
220 |
226 | ) : (
227 |
228 | )
229 | }
230 | sx={{
231 | backgroundColor:
232 | expanded === 'panel4' ? '#7EE787' : '#17202A',
233 | }}
234 | >
235 |
240 | 4. Is it completely free?
241 |
242 |
243 |
244 |
251 | Yes! It is absolutely free. Our motto is to help fellow
252 | learners through the way of open-source and we don't
253 | charge anything for that.
254 |
255 |
256 |
257 |
24 | By accessing this Website, accessible from clueless.tech, you are
25 | agreeing to be bound by these Website Terms and Conditions of Use and
26 | agree that you are responsible for the agreement with any applicable
27 | local laws. If you disagree with any of these terms, you are
28 | prohibited from accessing this site. The materials contained in this
29 | Website are protected by copyright and trade mark law.
30 |
31 |
32 |
2. User License
33 |
34 |
35 | Permission is granted to temporarily download one copy of the
36 | materials on ClueLess's Website for personal, non-commercial
37 | transitory viewing only. This is the grant of a license, not a
38 | transfer of title, and under this license you may not: modify or copy
39 | the materials; use the materials for any commercial purpose or for any
40 | public display; attempt to reverse engineer any software contained on
41 | ClueLess's Website; remove any copyright or other proprietary
42 | notations from the materials; or transferring the materials to another
43 | person or "mirror" the materials on any other server. This will let
44 | ClueLess to terminate upon violations of any of these restrictions.
45 | Upon termination, your viewing right will also be terminated and you
46 | should destroy any downloaded materials in your possession whether it
47 | is printed or electronic format. These Terms of Service has been
48 | created with the help of the Terms Of Service Generator.
49 |
50 |
3. Disclaimer
51 |
52 |
53 | All the materials on ClueLess's Website are provided "as is".
54 | ClueLess makes no warranties, may it be expressed or implied,
55 | therefore negates all other warranties. Furthermore, ClueLess does not
56 | make any representations concerning the accuracy or reliability of the
57 | use of the materials on its Website or otherwise relating to such
58 | materials or any sites linked to this Website.
59 |
60 |
4. Limitations
61 |
62 | ClueLess or its suppliers will not be hold accountable for any damages
63 | that will arise with the use or inability to use the materials on
64 | ClueLess's Website, even if ClueLess or an authorize
65 | representative of this Website has been notified, orally or written,
66 | of the possibility of such damage. Some jurisdiction does not allow
67 | limitations on implied warranties or limitations of liability for
68 | incidental damages, these limitations may not apply to you.
69 |
70 |
5. Revisions and Errata
71 |
72 | The materials appearing on ClueLess's Website may include
73 | technical, typographical, or photographic errors. ClueLess will not
74 | promise that any of the materials in this Website are accurate,
75 | complete, or current. ClueLess may change the materials contained on
76 | its Website at any time without notice. ClueLess does not make any
77 | commitment to update the materials.
78 |
79 |
6. Links
80 |
81 | ClueLess has not reviewed all of the sites linked to its Website and
82 | is not responsible for the contents of any such linked site. The
83 | presence of any link does not imply endorsement by ClueLess of the
84 | site. The use of any linked website is at the user's own risk.
85 |
86 |
87 | 7. Site Terms of Use Modifications
88 |
89 |
90 | ClueLess may revise these Terms of Use for its Website at any time
91 | without prior notice. By using this Website, you are agreeing to be
92 | bound by the current version of these Terms and Conditions of Use.
93 |