Skip to content

Commit

Permalink
Merge pull request #564 from damarudhvarma/sports_landing_page
Browse files Browse the repository at this point in the history
add: sports_landing_page
  • Loading branch information
DhanushNehru authored Oct 16, 2024
2 parents 890f4ae + 7b90f5f commit ab34190
Show file tree
Hide file tree
Showing 110 changed files with 10,467 additions and 0 deletions.
Binary file added sports_landing_page/.DS_Store
Binary file not shown.
20 changes: 20 additions & 0 deletions sports_landing_page/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
settings: { react: { version: '18.2' } },
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
}
2 changes: 2 additions & 0 deletions sports_landing_page/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
.env
6 changes: 6 additions & 0 deletions sports_landing_page/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
### Create a .env at the root of the project and add your

```
VITE_REACT_APP_AUTH0_DOMAIN=
VITE_REACT_APP_AUTH0_CLIENT_ID=
```
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions sports_landing_page/dist/assets/index-8c8aa558.css

Large diffs are not rendered by default.

94 changes: 94 additions & 0 deletions sports_landing_page/dist/assets/index-d7cafcef.js

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions sports_landing_page/dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!doctype html>
<html lang="en" >
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
<script type="module" crossorigin src="/assets/index-d7cafcef.js"></script>
<link rel="stylesheet" href="/assets/index-8c8aa558.css">
</head>
<body>
<div id="root" data-mode="light" class="bg-white dark:bg-[#0a1023]"></div>

</body>
</html>
Binary file added sports_landing_page/dist/react.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added sports_landing_page/dist/shirt_baked.glb
Binary file not shown.
Binary file added sports_landing_page/dist/threejs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions sports_landing_page/dist/vite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions sports_landing_page/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en" >
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
</head>
<body>
<div id="root" data-mode="light" class="bg-white dark:bg-[#0a1023]"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Loading

0 comments on commit ab34190

Please sign in to comment.