├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── components ├── Fonts.tsx ├── ScrollTopButton.tsx ├── cards │ ├── MeetBuddyCard.tsx │ └── ProcessSectionCard.tsx ├── footer │ ├── Footer.tsx │ ├── FooterDivider.tsx │ └── FooterLink.tsx ├── icons │ ├── ArrowDownLeft.tsx │ ├── ArrowDownRight.tsx │ ├── ArrowUp.tsx │ ├── HumanAndDogPulling.tsx │ ├── Paws.tsx │ └── index.ts ├── index.ts ├── layout │ ├── Layout.tsx │ └── LayoutHead.tsx ├── meet │ ├── MeetColumn.tsx │ └── MeetItem.tsx ├── navbar │ ├── Navbar.tsx │ └── NavbarLink.tsx └── section │ ├── Section.tsx │ └── SectionDivider.tsx ├── images.json ├── lib ├── constants.ts └── helperFunctions.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── index.tsx └── nosotros.tsx ├── public ├── favicon.ico ├── fonts │ └── raleway-subset.woff2 └── vercel.svg ├── screens └── Home │ └── sections │ ├── Family.tsx │ ├── Hero.tsx │ ├── History.tsx │ ├── LifeStories.tsx │ ├── MeetYourBuddy.tsx │ ├── Process.tsx │ └── Transit.tsx ├── theme ├── components │ ├── Badge.theme.ts │ ├── Button.theme.ts │ └── Text.theme.ts └── theme.ts ├── tsconfig.json ├── types └── adopcanem.types.ts └── vercel.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/README.md -------------------------------------------------------------------------------- /components/Fonts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/Fonts.tsx -------------------------------------------------------------------------------- /components/ScrollTopButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/ScrollTopButton.tsx -------------------------------------------------------------------------------- /components/cards/MeetBuddyCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/cards/MeetBuddyCard.tsx -------------------------------------------------------------------------------- /components/cards/ProcessSectionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/cards/ProcessSectionCard.tsx -------------------------------------------------------------------------------- /components/footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/footer/Footer.tsx -------------------------------------------------------------------------------- /components/footer/FooterDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/footer/FooterDivider.tsx -------------------------------------------------------------------------------- /components/footer/FooterLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/footer/FooterLink.tsx -------------------------------------------------------------------------------- /components/icons/ArrowDownLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/icons/ArrowDownLeft.tsx -------------------------------------------------------------------------------- /components/icons/ArrowDownRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/icons/ArrowDownRight.tsx -------------------------------------------------------------------------------- /components/icons/ArrowUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/icons/ArrowUp.tsx -------------------------------------------------------------------------------- /components/icons/HumanAndDogPulling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/icons/HumanAndDogPulling.tsx -------------------------------------------------------------------------------- /components/icons/Paws.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/icons/Paws.tsx -------------------------------------------------------------------------------- /components/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/icons/index.ts -------------------------------------------------------------------------------- /components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/index.ts -------------------------------------------------------------------------------- /components/layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/layout/Layout.tsx -------------------------------------------------------------------------------- /components/layout/LayoutHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/layout/LayoutHead.tsx -------------------------------------------------------------------------------- /components/meet/MeetColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/meet/MeetColumn.tsx -------------------------------------------------------------------------------- /components/meet/MeetItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/meet/MeetItem.tsx -------------------------------------------------------------------------------- /components/navbar/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/navbar/Navbar.tsx -------------------------------------------------------------------------------- /components/navbar/NavbarLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/navbar/NavbarLink.tsx -------------------------------------------------------------------------------- /components/section/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/section/Section.tsx -------------------------------------------------------------------------------- /components/section/SectionDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/components/section/SectionDivider.tsx -------------------------------------------------------------------------------- /images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/images.json -------------------------------------------------------------------------------- /lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/lib/constants.ts -------------------------------------------------------------------------------- /lib/helperFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/lib/helperFunctions.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/nosotros.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/pages/nosotros.tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/raleway-subset.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/public/fonts/raleway-subset.woff2 -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /screens/Home/sections/Family.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/screens/Home/sections/Family.tsx -------------------------------------------------------------------------------- /screens/Home/sections/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/screens/Home/sections/Hero.tsx -------------------------------------------------------------------------------- /screens/Home/sections/History.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/screens/Home/sections/History.tsx -------------------------------------------------------------------------------- /screens/Home/sections/LifeStories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/screens/Home/sections/LifeStories.tsx -------------------------------------------------------------------------------- /screens/Home/sections/MeetYourBuddy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/screens/Home/sections/MeetYourBuddy.tsx -------------------------------------------------------------------------------- /screens/Home/sections/Process.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/screens/Home/sections/Process.tsx -------------------------------------------------------------------------------- /screens/Home/sections/Transit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/screens/Home/sections/Transit.tsx -------------------------------------------------------------------------------- /theme/components/Badge.theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/theme/components/Badge.theme.ts -------------------------------------------------------------------------------- /theme/components/Button.theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/theme/components/Button.theme.ts -------------------------------------------------------------------------------- /theme/components/Text.theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/theme/components/Text.theme.ts -------------------------------------------------------------------------------- /theme/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/theme/theme.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/adopcanem.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/types/adopcanem.types.ts -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/adopcanem/HEAD/vercel.json --------------------------------------------------------------------------------