Repository: brahmGAN/bramgan.ai Branch: master Commit: db2c08781224 Files: 95 Total size: 10.4 MB Directory structure: gitextract_f6de6mzh/ ├── .gitignore ├── README.md ├── about.jsx ├── hamburgerMenu.component.jsx ├── nav-bar.component.jsx ├── package.json ├── public/ │ ├── index.html │ ├── manifest.json │ ├── robots.txt │ └── video/ │ ├── Brahmgan.webm │ ├── Social Media Filter Shoe.webm │ └── Voxel.webm └── src/ ├── App.css ├── App.js ├── App.test.js ├── components/ │ ├── FAQSection/ │ │ ├── FAQSection.component.jsx │ │ └── FAQSection.css │ ├── HeroSection/ │ │ ├── herosection.css │ │ └── hersosection.component.jsx │ ├── XR/ │ │ ├── xr.css │ │ └── xr.jsx │ ├── about/ │ │ ├── about.css │ │ └── about.jsx │ ├── clientcomponent/ │ │ ├── clentcomponent.css │ │ └── clientcomponent.component.jsx │ ├── clients/ │ │ ├── client.css │ │ └── clients.component.jsx │ ├── contact/ │ │ ├── contact.css │ │ └── contact.jsx │ ├── contactSection/ │ │ ├── contactSection.component.jsx │ │ └── contactSection.css │ ├── creativeSection/ │ │ ├── creativeSection.component.jsx │ │ └── creativesection.css │ ├── ecommerce/ │ │ ├── ecommerce.css │ │ └── ecommerce.jsx │ ├── features/ │ │ ├── feature.component.jsx │ │ └── feature.css │ ├── footer/ │ │ ├── footer.component.jsx │ │ └── footer.css │ ├── game/ │ │ ├── game.css │ │ └── game.jsx │ ├── getintouch/ │ │ ├── getintouch.component.jsx │ │ └── getintouch.css │ ├── hamburgermenu/ │ │ ├── hamburgerMenu.component.jsx │ │ └── hamburgermenu.css │ ├── home/ │ │ ├── home.css │ │ └── home.jsx │ ├── homePage/ │ │ ├── homePage.css │ │ └── homepage.jsx │ ├── homesection1/ │ │ ├── homesection1.component.jsx │ │ └── homesection1.css │ ├── introsection/ │ │ ├── introsection.component.jsx │ │ └── introsection.css │ ├── joinmail/ │ │ ├── joinMail.component.jsx │ │ └── joinmail.css │ ├── meubar/ │ │ ├── menubar.component.jsx │ │ └── menubar.css │ ├── moving-left/ │ │ ├── moving-left.component.jsx │ │ └── moving-left.css │ ├── nav-bar/ │ │ ├── nav-bar.component.jsx │ │ └── nav-bar.css │ ├── overboxes/ │ │ ├── overboxes.component.jsx │ │ └── overboxes.css │ ├── questions/ │ │ ├── questions.component.jsx │ │ └── questions.css │ ├── quote/ │ │ ├── quote.component.jsx │ │ └── quote.css │ ├── review/ │ │ ├── review.component.jsx │ │ └── review.css │ ├── slider/ │ │ ├── slider.component.jsx │ │ └── slider.css │ ├── solutions/ │ │ ├── solution.css │ │ └── solutions.jsx │ ├── solutionsection1/ │ │ ├── solutionsection1.component.jsx │ │ └── solutionsection1.css │ ├── solutionsection2/ │ │ ├── solutionsection2.component.jsx │ │ └── solutionsection2.css │ ├── solutionsection3/ │ │ ├── solutionsection3.component.jsx │ │ └── solutionsection3.css │ ├── solutionsection3content/ │ │ ├── solutionsection3content.component.jsx │ │ └── solutionsection3content.css │ ├── solutionsection3content2/ │ │ ├── solutionsection3content2.component.jsx │ │ └── solutionsection3content2.css │ ├── team/ │ │ ├── team.css │ │ └── team.jsx │ ├── tech/ │ │ ├── tech.component.jsx │ │ └── tech.css │ └── technologies/ │ ├── technologies.css │ └── technologies.jsx ├── firebase.js ├── gloabal.css ├── index.css ├── index.js ├── reportWebVitals.js └── setupTests.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies /node_modules /.pnp .pnp.js # testing /coverage # production /build # misc .DS_Store .env.local .env.development.local .env.test.local .env.production.local npm-debug.log* yarn-debug.log* yarn-error.log* ================================================ FILE: README.md ================================================ # Getting Started with Create React App This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Available Scripts In the project directory, you can run: ### `npm start` Runs the app in the development mode.\ Open [http://localhost:3000](http://localhost:3000) to view it in your browser. The page will reload when you make changes.\ You may also see any lint errors in the console. ### `npm test` Launches the test runner in the interactive watch mode.\ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. ### `npm run build` Builds the app for production to the `build` folder.\ It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes.\ Your app is ready to be deployed! See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. ### `npm run eject` **Note: this is a one-way operation. Once you `eject`, you can't go back!** If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. ## Learn More You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). To learn React, check out the [React documentation](https://reactjs.org/). ### Code Splitting This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) ### Analyzing the Bundle Size This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) ### Making a Progressive Web App This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) ### Advanced Configuration This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) ### Deployment This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) ### `npm run build` fails to minify This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) ================================================ FILE: about.jsx ================================================ import './about.css' import {Link} from 'react-router-dom' export default function about(){ return(

Our Bussiness

Changing the Game, literally

We are focused on creating the next generation of infrastructure for 3D services. The company was started in 2022 by serial entrepreneurs to help various gaming studios make their asset development faster. Soon we grew to cater Ecommerce clients as well who were keen to take their 2D customer experience to 3D with more engagement and conversion. Today we also serve the XR industry which innovatively uses the NeRF outputs to create highly photorealistic scenes.

OUR TEAM

Who We Are

{''}

Suraj Chawla

CEO & Co-founder
{''}

Kirubakaran Reddy

CBO & Co-founder
{''}

Puru

CTO & Co-founder
{''}

Yogesh Achari

Senior Marketing Lead
{''}

Kamala

Content Strategist Specialist
{''}

Pathanjali Sharma

Business Development
{''}

Praful R

Tech Advisor
); } ================================================ FILE: hamburgerMenu.component.jsx ================================================ import {Link} from 'react-router-dom' import './hamburgermenu.css' import React, { useState } from 'react'; const HamburgerMenu = () => { const [isOpen, setIsOpen] = useState(false); const [isSolutionsOpen, setIsSolutionsOpen] = useState(false); const [isAboutOpen, setIsAboutOpen] = useState(false); const toggleMenu = () => { setIsOpen(!isOpen); }; const toggleSolutions = () => { setIsSolutionsOpen(!isSolutionsOpen); }; const toggleAbout = () => { setIsAboutOpen(!isAboutOpen); }; return (
{''}
); }; export default HamburgerMenu; ================================================ FILE: nav-bar.component.jsx ================================================ import {Link} from 'react-router-dom' import React, {useState} from 'react' import './nav-bar.css' export default function NavBar(){ return ( <>
{''}
Home
Solutions
eCommerce XR Gaming
Technologies
About
{/* */} {/* */}
); } ================================================ FILE: package.json ================================================ { "name": "website", "version": "0.1.0", "private": true, "dependencies": { "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^13.4.0", "@testing-library/user-event": "^13.5.0", "firebase": "^9.18.0", "mangodb": "^1.0.0", "react": "^18.2.0", "react-dom": "^18.2.0", "react-router-dom": "^6.8.2", "react-scripts": "5.0.1", "web-vitals": "^2.1.4" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" }, "eslintConfig": { "extends": [ "react-app", "react-app/jest" ] }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] }, "devDependencies": { "eslint-plugin-react-hooks": "^4.6.0" } } ================================================ FILE: public/index.html ================================================ BrahmGAN
================================================ FILE: public/manifest.json ================================================ { "short_name": "React App", "name": "Create React App Sample", "icons": [ { "src": "favicon.ico", "sizes": "64x64 32x32 24x24 16x16", "type": "image/x-icon" }, { "src": "logo192.png", "type": "image/png", "sizes": "192x192" }, { "src": "logo512.png", "type": "image/png", "sizes": "512x512" } ], "start_url": ".", "display": "standalone", "theme_color": "#000000", "background_color": "#ffffff" } ================================================ FILE: public/robots.txt ================================================ # https://www.robotstxt.org/robotstxt.html User-agent: * Disallow: ================================================ FILE: public/video/Voxel.webm ================================================ [File too large to display: 10.3 MB] ================================================ FILE: src/App.css ================================================ .App { text-align: center; } .App-logo { height: 40vmin; pointer-events: none; } @media (prefers-reduced-motion: no-preference) { .App-logo { animation: App-logo-spin infinite 20s linear; } } .App-header { background-color: #282c34; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: calc(10px + 2vmin); color: white; } .App-link { color: #61dafb; } @keyframes App-logo-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } ================================================ FILE: src/App.js ================================================ import './App.css'; import './gloabal.css' import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'; import Footer from './components/footer/footer.component'; import Solutions from './components/solutions/solutions'; import Technologies from './components/technologies/technologies' import About from './components/about/about' import Game from './components/game/game' import XR from './components/XR/xr' import ECommerce from './components/ecommerce/ecommerce' import Team from './components/team/team' import ContactUs from './components/contact/contact' import Home from './components/home/home' import NavBar from './components/nav-bar/nav-bar.component' import ContactSection from './components/contactSection/contactSection.component' import HamburgerMenu from './components/hamburgermenu/hamburgerMenu.component' import { useEffect, useState } from 'react'; function App() { const scrollToTop = () => { window.scrollTo({ top: 0, behavior: "smooth" }); }; const [showHam, setShowHam] = useState(false) const isMobile = () => { return window.matchMedia("(max-width: 768px)").matches } useEffect(() => { setShowHam(isMobile()); if(window) { window.addEventListener('resize', () => { setShowHam(isMobile()); }) } }, []) useEffect(() => { scrollToTop(); }, []); return ( <>
{ showHam ? : }
} /> } /> } /> } /> } /> } /> } /> } /> } /> } />