├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── components.json ├── next.config.mjs ├── package.json ├── postcss.config.js ├── prettier.config.ts ├── public ├── images │ └── hands_v2.jpg └── next.svg ├── src ├── app │ ├── book │ │ └── page.tsx │ ├── layout.tsx │ └── page.tsx ├── components │ ├── ServiceCard │ │ └── index.tsx │ ├── SidebarMenu │ │ ├── Link │ │ │ └── index.tsx │ │ └── index.tsx │ └── ui │ │ ├── AuroraBg │ │ └── index.tsx │ │ ├── Button │ │ └── index.tsx │ │ ├── HoverCards │ │ └── index.tsx │ │ ├── RadioGroup │ │ └── index.tsx │ │ ├── SectionOpacity │ │ └── index.tsx │ │ ├── SectionTitle │ │ └── index.tsx │ │ └── ShadowCursor │ │ └── index.tsx ├── composables │ └── useFloatingImages.ts ├── data │ └── index.ts ├── icons │ └── ApproachIcons │ │ ├── 1.tsx │ │ ├── 2.tsx │ │ ├── 3.tsx │ │ ├── 4.tsx │ │ ├── 5.tsx │ │ ├── LogoIcon.tsx │ │ └── index.ts ├── shared │ ├── styles │ │ └── globals.scss │ └── utils │ │ ├── animations.js │ │ ├── index.ts │ │ └── useShadowCursor.js └── widgets │ ├── About │ └── index.tsx │ ├── Approach │ └── index.tsx │ ├── BookForm │ └── index.tsx │ ├── CallToAction │ └── index.tsx │ ├── Hero │ ├── images │ │ ├── Frame_1.svg │ │ ├── Frame_2.svg │ │ ├── Frame_3.svg │ │ └── index.ts │ └── index.tsx │ ├── Navigation │ └── index.tsx │ └── Services │ └── index.tsx ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/components.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/prettier.config.ts -------------------------------------------------------------------------------- /public/images/hands_v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/public/images/hands_v2.jpg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/public/next.svg -------------------------------------------------------------------------------- /src/app/book/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/app/book/page.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/ServiceCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/components/ServiceCard/index.tsx -------------------------------------------------------------------------------- /src/components/SidebarMenu/Link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/components/SidebarMenu/Link/index.tsx -------------------------------------------------------------------------------- /src/components/SidebarMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/components/SidebarMenu/index.tsx -------------------------------------------------------------------------------- /src/components/ui/AuroraBg/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/components/ui/AuroraBg/index.tsx -------------------------------------------------------------------------------- /src/components/ui/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/components/ui/Button/index.tsx -------------------------------------------------------------------------------- /src/components/ui/HoverCards/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/components/ui/HoverCards/index.tsx -------------------------------------------------------------------------------- /src/components/ui/RadioGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/components/ui/RadioGroup/index.tsx -------------------------------------------------------------------------------- /src/components/ui/SectionOpacity/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/components/ui/SectionOpacity/index.tsx -------------------------------------------------------------------------------- /src/components/ui/SectionTitle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/components/ui/SectionTitle/index.tsx -------------------------------------------------------------------------------- /src/components/ui/ShadowCursor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/components/ui/ShadowCursor/index.tsx -------------------------------------------------------------------------------- /src/composables/useFloatingImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/composables/useFloatingImages.ts -------------------------------------------------------------------------------- /src/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/data/index.ts -------------------------------------------------------------------------------- /src/icons/ApproachIcons/1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/icons/ApproachIcons/1.tsx -------------------------------------------------------------------------------- /src/icons/ApproachIcons/2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/icons/ApproachIcons/2.tsx -------------------------------------------------------------------------------- /src/icons/ApproachIcons/3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/icons/ApproachIcons/3.tsx -------------------------------------------------------------------------------- /src/icons/ApproachIcons/4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/icons/ApproachIcons/4.tsx -------------------------------------------------------------------------------- /src/icons/ApproachIcons/5.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/icons/ApproachIcons/5.tsx -------------------------------------------------------------------------------- /src/icons/ApproachIcons/LogoIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/icons/ApproachIcons/LogoIcon.tsx -------------------------------------------------------------------------------- /src/icons/ApproachIcons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/icons/ApproachIcons/index.ts -------------------------------------------------------------------------------- /src/shared/styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/shared/styles/globals.scss -------------------------------------------------------------------------------- /src/shared/utils/animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/shared/utils/animations.js -------------------------------------------------------------------------------- /src/shared/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/shared/utils/index.ts -------------------------------------------------------------------------------- /src/shared/utils/useShadowCursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/shared/utils/useShadowCursor.js -------------------------------------------------------------------------------- /src/widgets/About/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/widgets/About/index.tsx -------------------------------------------------------------------------------- /src/widgets/Approach/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/widgets/Approach/index.tsx -------------------------------------------------------------------------------- /src/widgets/BookForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/widgets/BookForm/index.tsx -------------------------------------------------------------------------------- /src/widgets/CallToAction/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/widgets/CallToAction/index.tsx -------------------------------------------------------------------------------- /src/widgets/Hero/images/Frame_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/widgets/Hero/images/Frame_1.svg -------------------------------------------------------------------------------- /src/widgets/Hero/images/Frame_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/widgets/Hero/images/Frame_2.svg -------------------------------------------------------------------------------- /src/widgets/Hero/images/Frame_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/widgets/Hero/images/Frame_3.svg -------------------------------------------------------------------------------- /src/widgets/Hero/images/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/widgets/Hero/images/index.ts -------------------------------------------------------------------------------- /src/widgets/Hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/widgets/Hero/index.tsx -------------------------------------------------------------------------------- /src/widgets/Navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/widgets/Navigation/index.tsx -------------------------------------------------------------------------------- /src/widgets/Services/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/src/widgets/Services/index.tsx -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shatlyk1011/agency-website/HEAD/tsconfig.json --------------------------------------------------------------------------------