├── .env ├── .eslintrc.json ├── .github └── workflows │ └── formattingcheck.yaml ├── .gitignore ├── .prettierrc ├── .sanity └── runtime │ ├── app.js │ └── index.html ├── .vscode ├── extensions.json └── settings.json ├── README.md ├── app ├── (site) │ ├── [...not-found] │ │ └── page.jsx │ ├── blog │ │ ├── [slug] │ │ │ └── page.jsx │ │ └── page.jsx │ ├── components │ │ ├── Author.jsx │ │ ├── BlogCard.jsx │ │ ├── BreadCrumb.jsx │ │ ├── ConstructionModal.jsx │ │ ├── EventCard.jsx │ │ ├── EventsSection.jsx │ │ ├── FeaturedCard.jsx │ │ ├── Footer.jsx │ │ ├── Header.jsx │ │ ├── Hero.jsx │ │ ├── IncrementNumber.jsx │ │ ├── LogoText.jsx │ │ ├── NavOpenSvg.jsx │ │ ├── Navbar.jsx │ │ ├── NewsletterCallout.jsx │ │ ├── Sandbox.jsx │ │ ├── SponsorSection.jsx │ │ ├── StatsSection.jsx │ │ └── WhoAreWeSection.jsx │ ├── construction │ │ └── page.jsx │ ├── layout.jsx │ ├── members │ │ ├── [slug] │ │ │ ├── memberpost.jsx │ │ │ └── page.jsx │ │ └── page.jsx │ ├── not-found.jsx │ ├── og │ │ └── route.js │ ├── page.jsx │ └── quiz │ │ └── page.jsx ├── (studio) │ ├── layout.jsx │ └── studio │ │ └── [[...index]] │ │ └── page.jsx └── globals.css ├── archive └── Vaibhavi │ ├── App.css │ ├── App.js │ ├── ImageComponent.js │ ├── image.svg │ └── index.js ├── jsconfig.json ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── aces-vector.svg ├── acesLogo(Black).svg ├── aceslogo.svg ├── construction.svg ├── images │ ├── Team2024.jpg │ ├── blogbg.jpg │ ├── blogimg.png │ ├── c2c.png │ ├── hero.jpg │ ├── image2.jpg │ ├── img5.svg │ ├── newteam.jpeg │ ├── phoenix.svg │ ├── placeholder.png │ └── team.png ├── instagram.svg ├── linkedin.svg ├── logo-text.svg ├── mainog.jpg ├── nav-close.svg ├── nav-open.svg └── oswald.ttf ├── sanity.cli.js ├── sanity.config.js ├── sanity ├── env.js ├── lib │ ├── client.js │ └── image.js ├── schema.js └── schemas │ ├── blockContent.js │ ├── member.js │ └── post.js └── tailwind.config.js /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/formattingcheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/.github/workflows/formattingcheck.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/.prettierrc -------------------------------------------------------------------------------- /.sanity/runtime/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/.sanity/runtime/app.js -------------------------------------------------------------------------------- /.sanity/runtime/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/.sanity/runtime/index.html -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/README.md -------------------------------------------------------------------------------- /app/(site)/[...not-found]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/[...not-found]/page.jsx -------------------------------------------------------------------------------- /app/(site)/blog/[slug]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/blog/[slug]/page.jsx -------------------------------------------------------------------------------- /app/(site)/blog/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/blog/page.jsx -------------------------------------------------------------------------------- /app/(site)/components/Author.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/Author.jsx -------------------------------------------------------------------------------- /app/(site)/components/BlogCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/BlogCard.jsx -------------------------------------------------------------------------------- /app/(site)/components/BreadCrumb.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/BreadCrumb.jsx -------------------------------------------------------------------------------- /app/(site)/components/ConstructionModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/ConstructionModal.jsx -------------------------------------------------------------------------------- /app/(site)/components/EventCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/EventCard.jsx -------------------------------------------------------------------------------- /app/(site)/components/EventsSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/EventsSection.jsx -------------------------------------------------------------------------------- /app/(site)/components/FeaturedCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/FeaturedCard.jsx -------------------------------------------------------------------------------- /app/(site)/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/Footer.jsx -------------------------------------------------------------------------------- /app/(site)/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/Header.jsx -------------------------------------------------------------------------------- /app/(site)/components/Hero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/Hero.jsx -------------------------------------------------------------------------------- /app/(site)/components/IncrementNumber.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/IncrementNumber.jsx -------------------------------------------------------------------------------- /app/(site)/components/LogoText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/LogoText.jsx -------------------------------------------------------------------------------- /app/(site)/components/NavOpenSvg.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/NavOpenSvg.jsx -------------------------------------------------------------------------------- /app/(site)/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/Navbar.jsx -------------------------------------------------------------------------------- /app/(site)/components/NewsletterCallout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/NewsletterCallout.jsx -------------------------------------------------------------------------------- /app/(site)/components/Sandbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/Sandbox.jsx -------------------------------------------------------------------------------- /app/(site)/components/SponsorSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/SponsorSection.jsx -------------------------------------------------------------------------------- /app/(site)/components/StatsSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/StatsSection.jsx -------------------------------------------------------------------------------- /app/(site)/components/WhoAreWeSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/components/WhoAreWeSection.jsx -------------------------------------------------------------------------------- /app/(site)/construction/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/construction/page.jsx -------------------------------------------------------------------------------- /app/(site)/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/layout.jsx -------------------------------------------------------------------------------- /app/(site)/members/[slug]/memberpost.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/members/[slug]/memberpost.jsx -------------------------------------------------------------------------------- /app/(site)/members/[slug]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/members/[slug]/page.jsx -------------------------------------------------------------------------------- /app/(site)/members/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/members/page.jsx -------------------------------------------------------------------------------- /app/(site)/not-found.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/not-found.jsx -------------------------------------------------------------------------------- /app/(site)/og/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/og/route.js -------------------------------------------------------------------------------- /app/(site)/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/page.jsx -------------------------------------------------------------------------------- /app/(site)/quiz/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(site)/quiz/page.jsx -------------------------------------------------------------------------------- /app/(studio)/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(studio)/layout.jsx -------------------------------------------------------------------------------- /app/(studio)/studio/[[...index]]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/(studio)/studio/[[...index]]/page.jsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/app/globals.css -------------------------------------------------------------------------------- /archive/Vaibhavi/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/archive/Vaibhavi/App.css -------------------------------------------------------------------------------- /archive/Vaibhavi/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/archive/Vaibhavi/App.js -------------------------------------------------------------------------------- /archive/Vaibhavi/ImageComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/archive/Vaibhavi/ImageComponent.js -------------------------------------------------------------------------------- /archive/Vaibhavi/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/archive/Vaibhavi/image.svg -------------------------------------------------------------------------------- /archive/Vaibhavi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/archive/Vaibhavi/index.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/aces-vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/aces-vector.svg -------------------------------------------------------------------------------- /public/acesLogo(Black).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/acesLogo(Black).svg -------------------------------------------------------------------------------- /public/aceslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/aceslogo.svg -------------------------------------------------------------------------------- /public/construction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/construction.svg -------------------------------------------------------------------------------- /public/images/Team2024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/images/Team2024.jpg -------------------------------------------------------------------------------- /public/images/blogbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/images/blogbg.jpg -------------------------------------------------------------------------------- /public/images/blogimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/images/blogimg.png -------------------------------------------------------------------------------- /public/images/c2c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/images/c2c.png -------------------------------------------------------------------------------- /public/images/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/images/hero.jpg -------------------------------------------------------------------------------- /public/images/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/images/image2.jpg -------------------------------------------------------------------------------- /public/images/img5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/images/img5.svg -------------------------------------------------------------------------------- /public/images/newteam.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/images/newteam.jpeg -------------------------------------------------------------------------------- /public/images/phoenix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/images/phoenix.svg -------------------------------------------------------------------------------- /public/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/images/placeholder.png -------------------------------------------------------------------------------- /public/images/team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/images/team.png -------------------------------------------------------------------------------- /public/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/instagram.svg -------------------------------------------------------------------------------- /public/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/linkedin.svg -------------------------------------------------------------------------------- /public/logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/logo-text.svg -------------------------------------------------------------------------------- /public/mainog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/mainog.jpg -------------------------------------------------------------------------------- /public/nav-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/nav-close.svg -------------------------------------------------------------------------------- /public/nav-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/nav-open.svg -------------------------------------------------------------------------------- /public/oswald.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/public/oswald.ttf -------------------------------------------------------------------------------- /sanity.cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/sanity.cli.js -------------------------------------------------------------------------------- /sanity.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/sanity.config.js -------------------------------------------------------------------------------- /sanity/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/sanity/env.js -------------------------------------------------------------------------------- /sanity/lib/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/sanity/lib/client.js -------------------------------------------------------------------------------- /sanity/lib/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/sanity/lib/image.js -------------------------------------------------------------------------------- /sanity/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/sanity/schema.js -------------------------------------------------------------------------------- /sanity/schemas/blockContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/sanity/schemas/blockContent.js -------------------------------------------------------------------------------- /sanity/schemas/member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/sanity/schemas/member.js -------------------------------------------------------------------------------- /sanity/schemas/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/sanity/schemas/post.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acesdit/website/HEAD/tailwind.config.js --------------------------------------------------------------------------------