Skip to content

Commit

Permalink
updated team
Browse files Browse the repository at this point in the history
  • Loading branch information
mrunankpawar committed Apr 11, 2024
1 parent 67144fa commit de7c8ea
Show file tree
Hide file tree
Showing 22 changed files with 5,410 additions and 0 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file modified images/.DS_Store
Binary file not shown.
Binary file modified images/Events/.DS_Store
Binary file not shown.
Binary file added images/Sponsors/adc.jpg
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 images/Team/rohan.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3712,6 +3712,22 @@ <h4>Akash Bharsakle</h4>
<a href="https://github.com/akashbharsakle" target="_blank"><i class="uil uil-github-alt"></i></a>
</div>
</article>

<article class="team__member">
<div class="team__member-image">
<img src="./images/Team/rohan.jpeg" alt="" />
</div>
<div class="team__member-info">
<h4>Rohan Kulkarni</h4>
<p>Team</p>
</div>
<div class="team__member-socials">
<a href="https://www.instagram.com/rohankulkarni.dev/" target="_blank"><i class="uil uil-instagram"></i></a>
<a href="https://twitter.com/rohan_2502" target="_blank"><i class="uil uil-twitter-alt"></i></a>
<a href="https://www.linkedin.com/in/rohan-k-2502/" target="_blank"><i class="uil uil-linkedin-alt"></i></a>
<a href="https://github.com/rohan-kulkarni-25" target="_blank"><i class="uil uil-github-alt"></i></a>
</div>
</article>
</div>
</section>

Expand Down Expand Up @@ -3826,6 +3842,14 @@ <h2>Sponsor and Partners</h2>
</div>
</article>

<article class="sponsor">
<div class="event-inner">
<div class="event__image">
<img src="./images/Sponsors/adc.jpg" alt="" />
</div>
</div>
</article>


</div>
</section>
Expand Down
21 changes: 21 additions & 0 deletions techbrewersv3/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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/jsx-no-target-blank': 'off',
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
}
24 changes: 24 additions & 0 deletions techbrewersv3/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
8 changes: 8 additions & 0 deletions techbrewersv3/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# React + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
13 changes: 13 additions & 0 deletions techbrewersv3/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"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Loading

0 comments on commit de7c8ea

Please sign in to comment.