├── src
├── assets
│ ├── tailwind.css
│ ├── logo.png
│ ├── programming.gif
│ ├── sggscodechef.png
│ ├── discordLogo.svg
│ ├── date.svg
│ └── event-talks.svg
├── components
│ ├── test
│ │ └── test.vue
│ ├── layouts
│ │ ├── resourses.vue
│ │ ├── carousal.vue
│ │ ├── aboutus.vue
│ │ ├── navigation.vue
│ │ └── events.vue
│ └── UI
│ │ └── baseContainers.vue
├── main.js
└── App.vue
├── public
├── favicon.ico
└── index.html
├── babel.config.js
├── postcss.config.js
├── .gitignore
├── README.md
├── tailwind.config.js
└── package.json
/src/assets/tailwind.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codechef-sggs-chapter/website/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/src/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codechef-sggs-chapter/website/HEAD/src/assets/logo.png
--------------------------------------------------------------------------------
/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: [
3 | '@vue/cli-plugin-babel/preset'
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------
/src/assets/programming.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codechef-sggs-chapter/website/HEAD/src/assets/programming.gif
--------------------------------------------------------------------------------
/src/assets/sggscodechef.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codechef-sggs-chapter/website/HEAD/src/assets/sggscodechef.png
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: [
3 | require('tailwindcss'),
4 | require('autoprefixer'),
5 | ]
6 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 | /dist
4 |
5 |
6 | # local env files
7 | .env.local
8 | .env.*.local
9 |
10 | # Log files
11 | npm-debug.log*
12 | yarn-debug.log*
13 | yarn-error.log*
14 | pnpm-debug.log*
15 |
16 | # Editor directories and files
17 | .idea
18 | .vscode
19 | *.suo
20 | *.ntvs*
21 | *.njsproj
22 | *.sln
23 | *.sw?
24 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # navigation_bar
2 |
3 | ## Project setup
4 | ```
5 | npm install
6 | ```
7 |
8 | ### Compiles and hot-reloads for development
9 | ```
10 | npm run serve
11 | ```
12 |
13 | ### Compiles and minifies for production
14 | ```
15 | npm run build
16 | ```
17 |
18 | ### Lints and fixes files
19 | ```
20 | npm run lint
21 | ```
22 |
23 | ### Customize configuration
24 | See [Configuration Reference](https://cli.vuejs.org/config/).
25 |
--------------------------------------------------------------------------------
/src/components/test/test.vue:
--------------------------------------------------------------------------------
1 |
2 |
Resourses:
7 |get started with programming
8 |CODECHEF SGGSIE&T CHAPTER
8 |
12 | " Our Belief "
bool learning = true , practicing = true ;
16 |
while ( learning && practicing )
{
cout << "SUCCES";
}
17 |
ABOUT US
9 |CodeChef ZHCET Chapter is the programming community run and maintained by the official chapter leaders, from Zakir Husain College of Engineering and Technology and mentored by CodeChef.
16 |We conduct different activities and engagements to achieve the mission, such as:
18 | 19 |Our mission is to build a robust competitive programming 29 | culture at ZHCET and help students become better problem 30 | solvers, foster learning environment and focus on development 31 | of all individuals in terms of their technical knowledge. 32 |
33 | 36 |EVENTS
11 |{{note}}
23 |
32 |