Skip to content

Commit 738fe3f

Browse files
committed
Merged from nikapadia.github.io repo. Commit: 0a6f90
1 parent b8fdfd1 commit 738fe3f

File tree

86 files changed

+5801
-4058
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+5801
-4058
lines changed

.eslintrc.cjs

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module.exports = {
2+
root: true,
3+
extends: ['eslint:recommended', 'prettier'],
4+
plugins: ['svelte3'],
5+
overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],
6+
parserOptions: {
7+
sourceType: 'module',
8+
ecmaVersion: 2020
9+
},
10+
env: {
11+
browser: true,
12+
es2017: true,
13+
node: true
14+
}
15+
};

.gitignore

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1-
# .DS_Store
2-
3-
*/**.DS_Store
1+
.DS_Store
2+
node_modules
3+
/build
4+
/.svelte-kit
5+
/package
6+
.env
7+
.env.*
8+
!.env.example
9+
discord.css

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
engine-strict=true

.prettierrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"useTabs": true,
3+
"singleQuote": true,
4+
"trailingComma": "none",
5+
"printWidth": 100
6+
}

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 Nilay Kapadia
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.

README.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# create-svelte
2+
3+
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
4+
5+
## Creating a project
6+
7+
If you're seeing this, you've probably already done this step. Congrats!
8+
9+
```bash
10+
# create a new project in the current directory
11+
npm init svelte
12+
13+
# create a new project in my-app
14+
npm init svelte my-app
15+
```
16+
17+
## Developing
18+
19+
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
20+
21+
```bash
22+
npm run dev
23+
24+
# or start the server and open the app in a new browser tab
25+
npm run dev -- --open
26+
```
27+
28+
## Building
29+
30+
To create a production version of your app:
31+
32+
```bash
33+
npm run build
34+
```
35+
36+
You can preview the production build with `npm run preview`.
37+
38+
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
39+
40+
41+
## Credits
42+
43+
[SvelteKit](https://kit.svelte.dev/)\
44+
[Animate on Scroll Library](https://github.com/michalsnik/aos)\
45+
[Phosphor Icons](https://github.com/phosphor-icons/phosphor-icons)\
46+
[Phosphor-Svelte](https://github.com/haruaki07/phosphor-svelte)\
47+
[Undraw](https://undraw.co/)

contact.html

-60
This file was deleted.

img/.DS_Store

-6 KB
Binary file not shown.

img/Robot.jpeg

-356 KB
Binary file not shown.

img/Website-Cropped-01 copy.jpeg

-297 KB
Binary file not shown.

img/Website-Cropped-02.jpg

-287 KB
Binary file not shown.

img/Website-Cropped-03.jpg

-1.59 MB
Binary file not shown.

img/Website-Cropped-04.jpg

-483 KB
Binary file not shown.

img/Website-Cropped-05.jpg

-1.88 MB
Binary file not shown.

img/Website-Cropped-06.jpg

-2.08 MB
Binary file not shown.

img/Website-Cropped-07.jpg

-2.04 MB
Binary file not shown.

img/Website-Cropped-08.jpg

-1.9 MB
Binary file not shown.

img/Website-Cropped-09.jpg

-1.56 MB
Binary file not shown.

img/Website-Cropped-10.jpg

-321 KB
Binary file not shown.

img/Website-Cropped-11.jpg

-341 KB
Binary file not shown.

img/logo 2.png

-9.98 KB
Binary file not shown.

img/partners/Chipotle-logo.png

-61.5 KB
Binary file not shown.

img/partners/Logo_Chiptole.png

-109 KB
Binary file not shown.

img/partners/Logo_Mezzaluna.webp

-42.9 KB
Binary file not shown.

img/partners/Logo_Nonnis.jpg

-356 KB
Binary file not shown.

img/partners/Logo_Pizzarellis.webp

-41.4 KB
Binary file not shown.

img/partners/Logo_VCS.png

-9.93 KB
Binary file not shown.

img/partners/Mezalunna Logo.webp

-23.7 KB
Binary file not shown.

img/partners/chipotle-mexican-grill.svg

-1
This file was deleted.

img/programming header.jpg

-1.72 MB
Binary file not shown.

img/programming header2.jpg

-1.77 MB
Binary file not shown.

index.html

-89
This file was deleted.

jsconfig.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "./.svelte-kit/tsconfig.json",
3+
"compilerOptions": {
4+
"allowJs": true,
5+
"checkJs": true,
6+
"esModuleInterop": true,
7+
"forceConsistentCasingInFileNames": true,
8+
"resolveJsonModule": true,
9+
"skipLibCheck": true,
10+
"sourceMap": true,
11+
"strict": true
12+
}
13+
}

0 commit comments

Comments
 (0)