├── .env ├── .github └── workflows │ └── main.yml ├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.module.css ├── App.tsx ├── assets │ ├── acppa.jpg │ ├── application.svg │ ├── design.svg │ ├── etude.jpg │ ├── fb.svg │ ├── insta.svg │ ├── keyboard.png │ ├── linkedin.svg │ ├── logo_b.svg │ ├── logo_w.svg │ ├── logomark.svg │ ├── marketing.svg │ ├── mouse.png │ ├── play.svg │ ├── screen.png │ ├── showcase.svg │ ├── social.svg │ ├── speed.svg │ ├── spin.svg │ ├── tetradis.jpg │ └── twitter.svg ├── components │ ├── Footer │ │ ├── index.module.css │ │ └── index.tsx │ ├── Header │ │ ├── index.module.css │ │ └── index.tsx │ ├── Landing │ │ ├── index.module.css │ │ └── index.tsx │ ├── Link │ │ ├── index.module.css │ │ └── index.tsx │ ├── Main │ │ ├── index.module.css │ │ └── index.tsx │ ├── Palette │ │ ├── index.module.css │ │ └── index.tsx │ ├── Screen │ │ ├── index.module.css │ │ └── index.tsx │ ├── Section │ │ ├── MiniSection │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── index.module.css │ │ └── index.tsx │ ├── Setup │ │ ├── index.module.css │ │ └── index.tsx │ ├── Slider │ │ ├── index.module.css │ │ └── index.tsx │ ├── Wheel │ │ ├── index.module.css │ │ └── index.tsx │ └── sections.ts ├── context │ └── ThemeContext.tsx ├── fonts │ ├── Gilroy-Bold.woff2 │ ├── Gilroy-Extrabold.woff2 │ ├── Gilroy-Light.woff2 │ ├── Gilroy-Regular.woff2 │ └── Gilroy-UltraLight.woff2 ├── hooks │ ├── useBreakpoint.tsx │ ├── useCustomPointer.tsx │ ├── useGradientSlicer.tsx │ ├── useIntersection.tsx │ └── useViewport.tsx ├── index.css ├── index.tsx ├── react-app-env.d.ts └── types │ └── index.ts ├── tsconfig.json └── yarn.lock /.env: -------------------------------------------------------------------------------- 1 | FAST_REFRESH=false -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.module.css: -------------------------------------------------------------------------------- 1 | .master { 2 | position: relative; 3 | } 4 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/acppa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/acppa.jpg -------------------------------------------------------------------------------- /src/assets/application.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/application.svg -------------------------------------------------------------------------------- /src/assets/design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/design.svg -------------------------------------------------------------------------------- /src/assets/etude.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/etude.jpg -------------------------------------------------------------------------------- /src/assets/fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/fb.svg -------------------------------------------------------------------------------- /src/assets/insta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/insta.svg -------------------------------------------------------------------------------- /src/assets/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/keyboard.png -------------------------------------------------------------------------------- /src/assets/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/linkedin.svg -------------------------------------------------------------------------------- /src/assets/logo_b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/logo_b.svg -------------------------------------------------------------------------------- /src/assets/logo_w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/logo_w.svg -------------------------------------------------------------------------------- /src/assets/logomark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/logomark.svg -------------------------------------------------------------------------------- /src/assets/marketing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/marketing.svg -------------------------------------------------------------------------------- /src/assets/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/mouse.png -------------------------------------------------------------------------------- /src/assets/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/play.svg -------------------------------------------------------------------------------- /src/assets/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/screen.png -------------------------------------------------------------------------------- /src/assets/showcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/showcase.svg -------------------------------------------------------------------------------- /src/assets/social.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/social.svg -------------------------------------------------------------------------------- /src/assets/speed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/speed.svg -------------------------------------------------------------------------------- /src/assets/spin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/spin.svg -------------------------------------------------------------------------------- /src/assets/tetradis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/tetradis.jpg -------------------------------------------------------------------------------- /src/assets/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/assets/twitter.svg -------------------------------------------------------------------------------- /src/components/Footer/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Footer/index.module.css -------------------------------------------------------------------------------- /src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/Header/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Header/index.module.css -------------------------------------------------------------------------------- /src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Landing/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Landing/index.module.css -------------------------------------------------------------------------------- /src/components/Landing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Landing/index.tsx -------------------------------------------------------------------------------- /src/components/Link/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Link/index.module.css -------------------------------------------------------------------------------- /src/components/Link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Link/index.tsx -------------------------------------------------------------------------------- /src/components/Main/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Main/index.module.css -------------------------------------------------------------------------------- /src/components/Main/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Main/index.tsx -------------------------------------------------------------------------------- /src/components/Palette/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Palette/index.module.css -------------------------------------------------------------------------------- /src/components/Palette/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Palette/index.tsx -------------------------------------------------------------------------------- /src/components/Screen/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Screen/index.module.css -------------------------------------------------------------------------------- /src/components/Screen/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Screen/index.tsx -------------------------------------------------------------------------------- /src/components/Section/MiniSection/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Section/MiniSection/index.module.css -------------------------------------------------------------------------------- /src/components/Section/MiniSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Section/MiniSection/index.tsx -------------------------------------------------------------------------------- /src/components/Section/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Section/index.module.css -------------------------------------------------------------------------------- /src/components/Section/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Section/index.tsx -------------------------------------------------------------------------------- /src/components/Setup/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Setup/index.module.css -------------------------------------------------------------------------------- /src/components/Setup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Setup/index.tsx -------------------------------------------------------------------------------- /src/components/Slider/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Slider/index.module.css -------------------------------------------------------------------------------- /src/components/Slider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Slider/index.tsx -------------------------------------------------------------------------------- /src/components/Wheel/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Wheel/index.module.css -------------------------------------------------------------------------------- /src/components/Wheel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/Wheel/index.tsx -------------------------------------------------------------------------------- /src/components/sections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/components/sections.ts -------------------------------------------------------------------------------- /src/context/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/context/ThemeContext.tsx -------------------------------------------------------------------------------- /src/fonts/Gilroy-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/fonts/Gilroy-Bold.woff2 -------------------------------------------------------------------------------- /src/fonts/Gilroy-Extrabold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/fonts/Gilroy-Extrabold.woff2 -------------------------------------------------------------------------------- /src/fonts/Gilroy-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/fonts/Gilroy-Light.woff2 -------------------------------------------------------------------------------- /src/fonts/Gilroy-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/fonts/Gilroy-Regular.woff2 -------------------------------------------------------------------------------- /src/fonts/Gilroy-UltraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/fonts/Gilroy-UltraLight.woff2 -------------------------------------------------------------------------------- /src/hooks/useBreakpoint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/hooks/useBreakpoint.tsx -------------------------------------------------------------------------------- /src/hooks/useCustomPointer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/hooks/useCustomPointer.tsx -------------------------------------------------------------------------------- /src/hooks/useGradientSlicer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/hooks/useGradientSlicer.tsx -------------------------------------------------------------------------------- /src/hooks/useIntersection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/hooks/useIntersection.tsx -------------------------------------------------------------------------------- /src/hooks/useViewport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/hooks/useViewport.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheharyarAnwar/Serco/HEAD/yarn.lock --------------------------------------------------------------------------------