From 93556d2584dd1bd47b6e82f562682165963d4721 Mon Sep 17 00:00:00 2001 From: Misbah Ansari <150408924+MisbahAnsar@users.noreply.github.com> Date: Sun, 30 Jun 2024 18:35:52 +0530 Subject: [PATCH] files uploaded --- .eslintrc.cjs | 21 + .gitignore | 24 + About.jsx | 21 + App.jsx | 30 + Cards.jsx | 26 + Eyes.jsx | 46 + Feature.jsx | 38 + Footer.jsx | 37 + LandingPage.jsx | 69 + Marquee.jsx | 20 + Navbar.jsx | 22 + README.md | 2 + index.css | 3 + index.html | 13 + main.jsx | 10 + package-lock.json | 5463 +++++++++++++++++++++++++++++++++++++++++++++ package.json | 33 + postcss.config.js | 6 + 18 files changed, 5884 insertions(+) create mode 100644 .eslintrc.cjs create mode 100644 .gitignore create mode 100644 About.jsx create mode 100644 App.jsx create mode 100644 Cards.jsx create mode 100644 Eyes.jsx create mode 100644 Feature.jsx create mode 100644 Footer.jsx create mode 100644 LandingPage.jsx create mode 100644 Marquee.jsx create mode 100644 Navbar.jsx create mode 100644 README.md create mode 100644 index.css create mode 100644 index.html create mode 100644 main.jsx create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 postcss.config.js 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 ( +
+ + + + + + + +