├── .eslintrc.json ├── .github └── FUNDING.yml ├── .gitignore ├── CONTRIBUTE.md ├── README.md ├── jsconfig.json ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── favicon.svg ├── fonts │ └── OverusedGrotesk-VF.woff2 ├── images │ └── profile.webp └── logos │ ├── 404logo.svg │ ├── Logofull.svg │ ├── Logouppercase.svg │ ├── footer.svg │ └── logosimple.svg ├── src ├── app │ ├── about │ │ └── page.jsx │ ├── globals.css │ ├── layout.jsx │ ├── legal │ │ └── page.jsx │ ├── not-found.jsx │ ├── opengraph-image-alt.txt │ ├── opengraph-image.png │ ├── page.jsx │ ├── resources │ │ └── [slug] │ │ │ └── page.jsx │ ├── robots.txt │ ├── sitemap.js │ ├── twitter-image.alt.txt │ ├── twitter-image.png │ └── utils │ │ └── getContent.jsx ├── components │ ├── Button │ │ ├── BackButton.jsx │ │ ├── Button.jsx │ │ └── LoadMoreButton.jsx │ ├── Card │ │ ├── ResourceCard.jsx │ │ ├── ResourceContainer.jsx │ │ └── Skeleton.jsx │ ├── Footer │ │ └── Footer.jsx │ ├── Header │ │ └── Navbar.jsx │ ├── Pagination │ │ └── PaginationControls.jsx │ ├── SVGs │ │ ├── FooterTitle.jsx │ │ ├── Logofull.jsx │ │ └── Logosimple.jsx │ └── TabNavigation │ │ ├── TabButtons.jsx │ │ └── TabButtonsMobile.jsx └── libs │ └── Clipboard │ └── Clipboard.jsx └── tailwind.config.js /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/CONTRIBUTE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/fonts/OverusedGrotesk-VF.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/public/fonts/OverusedGrotesk-VF.woff2 -------------------------------------------------------------------------------- /public/images/profile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/public/images/profile.webp -------------------------------------------------------------------------------- /public/logos/404logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/public/logos/404logo.svg -------------------------------------------------------------------------------- /public/logos/Logofull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/public/logos/Logofull.svg -------------------------------------------------------------------------------- /public/logos/Logouppercase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/public/logos/Logouppercase.svg -------------------------------------------------------------------------------- /public/logos/footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/public/logos/footer.svg -------------------------------------------------------------------------------- /public/logos/logosimple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/public/logos/logosimple.svg -------------------------------------------------------------------------------- /src/app/about/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/app/about/page.jsx -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/app/layout.jsx -------------------------------------------------------------------------------- /src/app/legal/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/app/legal/page.jsx -------------------------------------------------------------------------------- /src/app/not-found.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/app/not-found.jsx -------------------------------------------------------------------------------- /src/app/opengraph-image-alt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/app/opengraph-image-alt.txt -------------------------------------------------------------------------------- /src/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/app/opengraph-image.png -------------------------------------------------------------------------------- /src/app/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/app/page.jsx -------------------------------------------------------------------------------- /src/app/resources/[slug]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/app/resources/[slug]/page.jsx -------------------------------------------------------------------------------- /src/app/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/app/robots.txt -------------------------------------------------------------------------------- /src/app/sitemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/app/sitemap.js -------------------------------------------------------------------------------- /src/app/twitter-image.alt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/app/twitter-image.alt.txt -------------------------------------------------------------------------------- /src/app/twitter-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/app/twitter-image.png -------------------------------------------------------------------------------- /src/app/utils/getContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/app/utils/getContent.jsx -------------------------------------------------------------------------------- /src/components/Button/BackButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/components/Button/BackButton.jsx -------------------------------------------------------------------------------- /src/components/Button/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/components/Button/Button.jsx -------------------------------------------------------------------------------- /src/components/Button/LoadMoreButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/components/Button/LoadMoreButton.jsx -------------------------------------------------------------------------------- /src/components/Card/ResourceCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/components/Card/ResourceCard.jsx -------------------------------------------------------------------------------- /src/components/Card/ResourceContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/components/Card/ResourceContainer.jsx -------------------------------------------------------------------------------- /src/components/Card/Skeleton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/components/Card/Skeleton.jsx -------------------------------------------------------------------------------- /src/components/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/components/Footer/Footer.jsx -------------------------------------------------------------------------------- /src/components/Header/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/components/Header/Navbar.jsx -------------------------------------------------------------------------------- /src/components/Pagination/PaginationControls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/components/Pagination/PaginationControls.jsx -------------------------------------------------------------------------------- /src/components/SVGs/FooterTitle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/components/SVGs/FooterTitle.jsx -------------------------------------------------------------------------------- /src/components/SVGs/Logofull.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/components/SVGs/Logofull.jsx -------------------------------------------------------------------------------- /src/components/SVGs/Logosimple.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/components/SVGs/Logosimple.jsx -------------------------------------------------------------------------------- /src/components/TabNavigation/TabButtons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/components/TabNavigation/TabButtons.jsx -------------------------------------------------------------------------------- /src/components/TabNavigation/TabButtonsMobile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/components/TabNavigation/TabButtonsMobile.jsx -------------------------------------------------------------------------------- /src/libs/Clipboard/Clipboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/src/libs/Clipboard/Clipboard.jsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/by-huy/Pillarstack/HEAD/tailwind.config.js --------------------------------------------------------------------------------