├── .eslintrc.json ├── .gitignore ├── LICENSE.md ├── README.md ├── next.config.js ├── package.json ├── postcss.config.js ├── prettier.config.js ├── public └── og-image.jpg ├── src ├── app │ ├── favicon.ico │ ├── layout.tsx │ ├── not-found.tsx │ └── page.tsx ├── components │ ├── Author.tsx │ ├── Button.tsx │ ├── CheckIcon.tsx │ ├── Container.tsx │ ├── Expandable.tsx │ ├── Footer.tsx │ ├── FreeChapters.tsx │ ├── Friends.tsx │ ├── GridPattern.tsx │ ├── Hero.tsx │ ├── Introduction.tsx │ ├── NavBar.tsx │ ├── Pattern.tsx │ ├── Pricing.tsx │ ├── Resources.tsx │ ├── Screencasts.tsx │ ├── SectionHeading.tsx │ ├── StarRating.tsx │ ├── TableOfContents.tsx │ ├── Testimonial.tsx │ └── Testimonials.tsx ├── fonts │ ├── CalSans-SemiBold.ttf │ └── CalSans-SemiBold.woff2 ├── images │ ├── avatars │ │ ├── author.jpg │ │ ├── author.png │ │ ├── avatar-1.png │ │ ├── avatar-10.png │ │ ├── avatar-11.png │ │ ├── avatar-12.png │ │ ├── avatar-13.png │ │ ├── avatar-14.png │ │ ├── avatar-15.png │ │ ├── avatar-16.png │ │ ├── avatar-17.png │ │ ├── avatar-18.png │ │ ├── avatar-2.png │ │ ├── avatar-3.png │ │ ├── avatar-4.png │ │ ├── avatar-5.png │ │ ├── avatar-6.png │ │ ├── avatar-7.png │ │ ├── avatar-8.png │ │ └── avatar-9.png │ ├── cover.png │ ├── resources │ │ ├── abstract-background.png │ │ ├── discord.svg │ │ ├── figma.svg │ │ └── video-player.svg │ └── screencasts │ │ ├── duotone.svg │ │ ├── grids.svg │ │ ├── setup.svg │ │ └── strokes.svg └── styles │ └── tailwind.css ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/og-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/public/og-image.jpg -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/Author.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/Author.tsx -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/CheckIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/CheckIcon.tsx -------------------------------------------------------------------------------- /src/components/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/Container.tsx -------------------------------------------------------------------------------- /src/components/Expandable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/Expandable.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/FreeChapters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/FreeChapters.tsx -------------------------------------------------------------------------------- /src/components/Friends.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/Friends.tsx -------------------------------------------------------------------------------- /src/components/GridPattern.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/GridPattern.tsx -------------------------------------------------------------------------------- /src/components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/Hero.tsx -------------------------------------------------------------------------------- /src/components/Introduction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/Introduction.tsx -------------------------------------------------------------------------------- /src/components/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/NavBar.tsx -------------------------------------------------------------------------------- /src/components/Pattern.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/Pattern.tsx -------------------------------------------------------------------------------- /src/components/Pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/Pricing.tsx -------------------------------------------------------------------------------- /src/components/Resources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/Resources.tsx -------------------------------------------------------------------------------- /src/components/Screencasts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/Screencasts.tsx -------------------------------------------------------------------------------- /src/components/SectionHeading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/SectionHeading.tsx -------------------------------------------------------------------------------- /src/components/StarRating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/StarRating.tsx -------------------------------------------------------------------------------- /src/components/TableOfContents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/TableOfContents.tsx -------------------------------------------------------------------------------- /src/components/Testimonial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/Testimonial.tsx -------------------------------------------------------------------------------- /src/components/Testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/components/Testimonials.tsx -------------------------------------------------------------------------------- /src/fonts/CalSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/fonts/CalSans-SemiBold.ttf -------------------------------------------------------------------------------- /src/fonts/CalSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/fonts/CalSans-SemiBold.woff2 -------------------------------------------------------------------------------- /src/images/avatars/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/author.jpg -------------------------------------------------------------------------------- /src/images/avatars/author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/author.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-1.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-10.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-11.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-12.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-13.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-14.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-15.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-16.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-17.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-18.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-2.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-3.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-4.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-5.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-6.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-7.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-8.png -------------------------------------------------------------------------------- /src/images/avatars/avatar-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/avatars/avatar-9.png -------------------------------------------------------------------------------- /src/images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/cover.png -------------------------------------------------------------------------------- /src/images/resources/abstract-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/resources/abstract-background.png -------------------------------------------------------------------------------- /src/images/resources/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/resources/discord.svg -------------------------------------------------------------------------------- /src/images/resources/figma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/resources/figma.svg -------------------------------------------------------------------------------- /src/images/resources/video-player.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/resources/video-player.svg -------------------------------------------------------------------------------- /src/images/screencasts/duotone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/screencasts/duotone.svg -------------------------------------------------------------------------------- /src/images/screencasts/grids.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/screencasts/grids.svg -------------------------------------------------------------------------------- /src/images/screencasts/setup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/screencasts/setup.svg -------------------------------------------------------------------------------- /src/images/screencasts/strokes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/images/screencasts/strokes.svg -------------------------------------------------------------------------------- /src/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/src/styles/tailwind.css -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerRich/ossacc/HEAD/tsconfig.json --------------------------------------------------------------------------------