diff --git a/.eslintrc.cjs b/.eslintrc.cjs new file mode 100644 index 0000000..3e212e1 --- /dev/null +++ b/.eslintrc.cjs @@ -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 }, + ], + }, +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/.gitignore @@ -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? diff --git a/About.jsx b/About.jsx new file mode 100644 index 0000000..775e50c --- /dev/null +++ b/About.jsx @@ -0,0 +1,21 @@ +import React from 'react' + +const About = () => { + console.log("Jo bhi console check kiya wo gay.") + return ( +
+

Ochi is a strategic partner for fast-growing tech businesses that need to raise funds, sell products, explain complex ideas, and hire great people.

+
+
+

Our approach:

+ +
+
+
+
+ ) +} + +export default About \ No newline at end of file diff --git a/App.jsx b/App.jsx new file mode 100644 index 0000000..cc4c4d9 --- /dev/null +++ b/App.jsx @@ -0,0 +1,30 @@ +import React from 'react' +import Navbar from './components/Navbar' +import LandingPage from './components/LandingPage' +import Marquee from './components/Marquee' +import About from './components/About' +import Eyes from './components/Eyes' +import Feature from './components/Feature' +import Cards from './components/Cards' +import Footer from './components/Footer' +import LocomotiveScroll from 'locomotive-scroll'; + +const App = () => { + + const locomotiveScroll = new LocomotiveScroll(); + + return ( +
+ + + + + + + +