├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── backend ├── .gitignore ├── account │ ├── __init__.py │ ├── apps.py │ ├── authentication.py │ ├── managers.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ ├── utilities.py │ └── views.py ├── cli │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ ├── utilities.py │ └── views.py ├── manage.py ├── project │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py └── website │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── frontend ├── .eslintrc ├── .gitignore ├── components │ ├── Homesection │ │ ├── Hero.js │ │ └── Home.module.css │ ├── Projects │ │ ├── Modal.js │ │ ├── Projects.js │ │ └── project.module.css │ ├── Projectsheading │ │ ├── Ourprojects.js │ │ └── Ourprojects.module.css │ ├── Secondnavbar │ │ ├── Navbar2.js │ │ └── Navbar2.module.css │ ├── footer │ │ └── footer.js │ └── topnavbar │ │ ├── Navbar.js │ │ └── Navbar.module.css ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── _app.js │ ├── api │ │ └── hello.js │ └── index.js ├── postcss.config.js ├── public │ └── assets │ │ ├── Background(hero).png │ │ ├── cc-proj2.jpg │ │ ├── codechef logo 1.png │ │ ├── favicon.ico │ │ └── hero.png ├── styles │ ├── Home.module.css │ └── globals.css └── tailwind.config.js ├── package.json └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea 3 | 4 | __pycache__/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/account/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/account/apps.py -------------------------------------------------------------------------------- /backend/account/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/account/authentication.py -------------------------------------------------------------------------------- /backend/account/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/account/managers.py -------------------------------------------------------------------------------- /backend/account/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/account/models.py -------------------------------------------------------------------------------- /backend/account/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/account/serializers.py -------------------------------------------------------------------------------- /backend/account/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/account/tests.py -------------------------------------------------------------------------------- /backend/account/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/account/urls.py -------------------------------------------------------------------------------- /backend/account/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/account/utilities.py -------------------------------------------------------------------------------- /backend/account/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/account/views.py -------------------------------------------------------------------------------- /backend/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/cli/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/cli/admin.py -------------------------------------------------------------------------------- /backend/cli/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/cli/apps.py -------------------------------------------------------------------------------- /backend/cli/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/cli/models.py -------------------------------------------------------------------------------- /backend/cli/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/cli/serializers.py -------------------------------------------------------------------------------- /backend/cli/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/cli/tests.py -------------------------------------------------------------------------------- /backend/cli/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/cli/urls.py -------------------------------------------------------------------------------- /backend/cli/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/cli/utilities.py -------------------------------------------------------------------------------- /backend/cli/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/cli/views.py -------------------------------------------------------------------------------- /backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/manage.py -------------------------------------------------------------------------------- /backend/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/project/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/project/admin.py -------------------------------------------------------------------------------- /backend/project/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/project/apps.py -------------------------------------------------------------------------------- /backend/project/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/project/models.py -------------------------------------------------------------------------------- /backend/project/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/project/tests.py -------------------------------------------------------------------------------- /backend/project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/project/urls.py -------------------------------------------------------------------------------- /backend/project/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/project/views.py -------------------------------------------------------------------------------- /backend/website/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/website/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/website/asgi.py -------------------------------------------------------------------------------- /backend/website/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/website/settings.py -------------------------------------------------------------------------------- /backend/website/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/website/urls.py -------------------------------------------------------------------------------- /backend/website/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/backend/website/wsgi.py -------------------------------------------------------------------------------- /frontend/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/.eslintrc -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/components/Homesection/Hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/components/Homesection/Hero.js -------------------------------------------------------------------------------- /frontend/components/Homesection/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/components/Homesection/Home.module.css -------------------------------------------------------------------------------- /frontend/components/Projects/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/components/Projects/Modal.js -------------------------------------------------------------------------------- /frontend/components/Projects/Projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/components/Projects/Projects.js -------------------------------------------------------------------------------- /frontend/components/Projects/project.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/components/Projects/project.module.css -------------------------------------------------------------------------------- /frontend/components/Projectsheading/Ourprojects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/components/Projectsheading/Ourprojects.js -------------------------------------------------------------------------------- /frontend/components/Projectsheading/Ourprojects.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/components/Projectsheading/Ourprojects.module.css -------------------------------------------------------------------------------- /frontend/components/Secondnavbar/Navbar2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/components/Secondnavbar/Navbar2.js -------------------------------------------------------------------------------- /frontend/components/Secondnavbar/Navbar2.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/components/Secondnavbar/Navbar2.module.css -------------------------------------------------------------------------------- /frontend/components/footer/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/components/footer/footer.js -------------------------------------------------------------------------------- /frontend/components/topnavbar/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/components/topnavbar/Navbar.js -------------------------------------------------------------------------------- /frontend/components/topnavbar/Navbar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/components/topnavbar/Navbar.module.css -------------------------------------------------------------------------------- /frontend/next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | reactStrictMode: true, 3 | } 4 | -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/pages/_app.js -------------------------------------------------------------------------------- /frontend/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/pages/api/hello.js -------------------------------------------------------------------------------- /frontend/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/pages/index.js -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/assets/Background(hero).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/public/assets/Background(hero).png -------------------------------------------------------------------------------- /frontend/public/assets/cc-proj2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/public/assets/cc-proj2.jpg -------------------------------------------------------------------------------- /frontend/public/assets/codechef logo 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/public/assets/codechef logo 1.png -------------------------------------------------------------------------------- /frontend/public/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/public/assets/favicon.ico -------------------------------------------------------------------------------- /frontend/public/assets/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/public/assets/hero.png -------------------------------------------------------------------------------- /frontend/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/styles/Home.module.css -------------------------------------------------------------------------------- /frontend/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/styles/globals.css -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/Projectsv2/HEAD/requirements.txt --------------------------------------------------------------------------------