├── .env.example ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── beginner.yml │ ├── bug_report.yml │ ├── c4gt.md │ ├── c4gt_community.yml │ ├── c4gt_open_community.yml │ ├── documentation_bug.yml │ ├── feature_request.yml │ └── question_and_support.yml ├── OWNERS ├── PULL_REQUEST_TEMPLATE.md ├── contributor.md └── workflows │ └── OWNERS ├── .gitignore ├── .prettierrc.json ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── markdown ├── blogs │ ├── event1.mdx │ ├── event2.mdx │ └── event3.mdx ├── legal-notice │ └── legal-notice.mdx ├── privacy-policy │ └── privacy-policy.mdx └── terms_service │ └── terms_service.mdx ├── next.config.js ├── package.json ├── postcss.config.js ├── prisma └── schema.prisma ├── public ├── content │ ├── legal-notice.md │ ├── privacy-policy.md │ └── terms-of-service.md └── images │ ├── 404-dark.svg │ ├── 404.svg │ ├── about │ ├── about-image-01.jpg │ ├── about-image-02.webp │ └── about00.png │ ├── blog │ ├── article-author-01.png │ ├── article-author-02.png │ ├── article-author-03.png │ ├── article-author-04.png │ ├── author-01.png │ ├── author-02.jpg │ ├── bannder-ad.png │ ├── blog-01.jpg │ ├── blog-02.jpg │ ├── blog-03.jpg │ ├── blog-details-01.jpg │ ├── blog-footer-01.jpg │ ├── blog-footer-02.jpg │ ├── dotted-shape.svg │ └── quote-bg.svg │ ├── brands │ ├── C4GT.webp │ ├── CD-dark.webp │ ├── CEDB.png │ ├── CEDW.png │ ├── Coin.png │ ├── CoinDesk_dark.png │ ├── GBS-Logo-B.png │ ├── GBS-Logo-B2.svg │ ├── IB-week-dark.png │ ├── India-Blockchain-Week.png │ ├── TWSB.webp │ ├── TWSW.webp │ ├── ayroui-white.svg │ ├── ayroui.svg │ ├── coindesk-logo.avif │ ├── deepek.PNG │ ├── g23.png │ ├── g24.png │ ├── graygrids-white.svg │ ├── graygrids.svg │ ├── img_BNB_Logo.png │ ├── lineicons-white.svg │ ├── lineicons.svg │ ├── manik.PNG │ ├── rida.PNG │ ├── tailgrids-white.svg │ ├── tailgrids.svg │ ├── uideck-white.svg │ └── uideck.svg │ ├── event │ └── event1.jpeg │ ├── footer │ ├── brands │ │ ├── ayroui.svg │ │ ├── ecommerce-html.svg │ │ ├── graygrids.svg │ │ ├── lineicons.svg │ │ ├── plainadmin.svg │ │ ├── tailgrids.svg │ │ ├── tailwindtemplates.svg │ │ └── uideck.svg │ ├── shape-1.svg │ └── shape-3.svg │ ├── hero │ ├── brand.svg │ ├── hero-image.jpg │ └── hero_video_new.mp4 │ ├── icons │ ├── commudle.svg │ ├── discord.svg │ ├── github.svg │ ├── image.png │ └── youtube.svg │ ├── logos │ ├── logo-darkbg.svg │ └── logo-lightbg.svg │ ├── team │ ├── Aditya D.jpg │ ├── Anjali_Gautam.jpeg │ ├── Anushka_Tiwari.jpg │ ├── Ayushmaan.jpg │ ├── Chiranth Raju C.jpeg │ ├── Divyam_Sharma.jpg │ ├── Durgesh_Prajapati.jpg │ ├── Ghanshyam_Singh.jpg │ ├── Harshit_verma.png │ ├── Karishma_Seth.jpg │ ├── Manjeet_Singh.jpg │ ├── Muskan_Kashyap.jpg │ ├── Piyush_prasad.jpeg │ ├── Ramakrushna.jpg │ ├── Rishi_Mondal.jpg │ ├── Sayan_Rakshit.jpg │ ├── Sneha_kumari.jpg │ ├── Vedant_Anand.jpg │ ├── Yash_ku_saini.jpg │ ├── alok.jpg │ ├── dotted-shape.svg │ ├── hetvi_popat.jpg │ ├── manishka.jpg │ ├── sachit_sehgal.jpg │ ├── sanskriti.jpg │ ├── shape-2.svg │ └── yashika.jpg │ └── testimonials │ ├── author-01.png │ ├── author-02.png │ └── author-03.png ├── schema.json ├── src ├── app │ ├── (site) │ │ ├── (auth) │ │ │ ├── forgot-password │ │ │ │ └── page.tsx │ │ │ ├── reset-password │ │ │ │ └── [token] │ │ │ │ │ └── page.tsx │ │ │ ├── signin │ │ │ │ └── page.tsx │ │ │ └── signup │ │ │ │ └── page.tsx │ │ ├── about │ │ │ └── page.tsx │ │ ├── blogs │ │ │ ├── [slug] │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ ├── contact │ │ │ └── page.tsx │ │ ├── createEvent │ │ │ └── page.tsx │ │ ├── editEvent │ │ │ └── [id] │ │ │ │ ├── _app.tsx │ │ │ │ └── page.tsx │ │ ├── error │ │ │ └── page.tsx │ │ ├── events │ │ │ ├── [eventSlug] │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ ├── pricing │ │ │ └── page.tsx │ │ └── projects │ │ │ └── page.tsx │ ├── api │ │ ├── auth │ │ │ ├── [...nextauth] │ │ │ │ └── route.ts │ │ │ └── [auth0] │ │ │ │ └── route.ts │ │ ├── contex │ │ │ └── ToasetContex.tsx │ │ ├── forgot-password │ │ │ ├── reset │ │ │ │ └── route.ts │ │ │ ├── update │ │ │ │ └── route.ts │ │ │ └── verify-token │ │ │ │ └── route.ts │ │ ├── github │ │ │ └── route.js │ │ ├── payment │ │ │ └── route.ts │ │ └── register │ │ │ └── route.ts │ ├── head.tsx │ ├── icon2.ico │ ├── layout.tsx │ ├── not-found.tsx │ └── page.tsx ├── components │ ├── About │ │ └── index.tsx │ ├── Animation │ │ └── Loading.tsx │ ├── Auth │ │ ├── ForgotPassword │ │ │ └── index.tsx │ │ ├── MagicLink │ │ │ └── index.tsx │ │ ├── ResetPassword │ │ │ └── index.tsx │ │ ├── SignIn │ │ │ └── index.tsx │ │ ├── SignUp │ │ │ └── index.tsx │ │ ├── SocialSignIn.tsx │ │ └── SwitchOption │ │ │ └── index.tsx │ ├── Blog │ │ ├── AuthorQuote.tsx │ │ ├── BlogSection.tsx │ │ ├── HomeBlogSection.tsx │ │ ├── Newsletter.tsx │ │ ├── PopularArticle.tsx │ │ ├── SharePost.tsx │ │ ├── SingleBlog.tsx │ │ ├── TagButton.tsx │ │ └── index.tsx │ ├── CallToAction │ │ └── index.tsx │ ├── Clients │ │ ├── SingleClient.tsx │ │ ├── clientsData.tsx │ │ └── index.tsx │ ├── Common │ │ ├── Breadcrumb.tsx │ │ ├── ImageSlider.tsx │ │ ├── Loader.tsx │ │ ├── PreLoader.tsx │ │ ├── ScrollUp.tsx │ │ └── SectionTitle.tsx │ ├── Contact │ │ ├── form.tsx │ │ └── index.tsx │ ├── Faq │ │ ├── SingleFaq.tsx │ │ └── index.tsx │ ├── Features │ │ ├── InfiniteCarousel.css │ │ ├── InfiniteCarousel.tsx │ │ ├── SingleFeature.tsx │ │ ├── featuresData.tsx │ │ └── index.tsx │ ├── Footer │ │ └── index.tsx │ ├── Header │ │ ├── ThemeToggler.tsx │ │ ├── index.tsx │ │ ├── menuData.tsx │ │ └── navbar.css │ ├── Hero │ │ ├── hero.css │ │ └── index.tsx │ ├── LegalNotice │ │ └── index.tsx │ ├── LinkdinPosts │ │ └── index.tsx │ ├── NotFound │ │ └── index.tsx │ ├── Pricing │ │ ├── OfferList.tsx │ │ ├── PricingBox.tsx │ │ └── index.tsx │ ├── Privacy │ │ └── index.tsx │ ├── ScrollToTop │ │ └── index.tsx │ ├── Team │ │ ├── SingleTeam.tsx │ │ └── index.tsx │ ├── Testimonials │ │ ├── SingleTestimonial.tsx │ │ └── index.tsx │ ├── eventData │ │ ├── bannerEvent.tsx │ │ ├── eventBanner.tsx │ │ ├── eventCard.tsx │ │ ├── eventStyles.css │ │ └── index.tsx │ └── projectData │ │ ├── Card.tsx │ │ ├── index.tsx │ │ ├── projectBanner.tsx │ │ └── projects.css ├── firebase │ └── firebaseConfig.js ├── stripe │ └── pricingData.ts ├── styles │ ├── index.css │ └── prism-vsc-dark-plus.css ├── types │ ├── blog.ts │ ├── client.ts │ ├── feature.ts │ ├── menu.ts │ ├── price.ts │ ├── team.ts │ └── testimonial.ts └── utils │ ├── auth.ts │ ├── email.ts │ ├── markdown.ts │ ├── markdownToHtml.ts │ ├── prismaDB.ts │ └── validateEmail.ts ├── tailwind.config.ts ├── tsconfig.json └── types └── lerp.d.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/beginner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/.github/ISSUE_TEMPLATE/beginner.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/c4gt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/.github/ISSUE_TEMPLATE/c4gt.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/c4gt_community.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/.github/ISSUE_TEMPLATE/c4gt_community.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/c4gt_open_community.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/.github/ISSUE_TEMPLATE/c4gt_open_community.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/.github/ISSUE_TEMPLATE/documentation_bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question_and_support.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/.github/ISSUE_TEMPLATE/question_and_support.yml -------------------------------------------------------------------------------- /.github/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/.github/OWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/contributor.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/workflows/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/.github/workflows/OWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/README.md -------------------------------------------------------------------------------- /markdown/blogs/event1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/markdown/blogs/event1.mdx -------------------------------------------------------------------------------- /markdown/blogs/event2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/markdown/blogs/event2.mdx -------------------------------------------------------------------------------- /markdown/blogs/event3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/markdown/blogs/event3.mdx -------------------------------------------------------------------------------- /markdown/legal-notice/legal-notice.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/markdown/legal-notice/legal-notice.mdx -------------------------------------------------------------------------------- /markdown/privacy-policy/privacy-policy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/markdown/privacy-policy/privacy-policy.mdx -------------------------------------------------------------------------------- /markdown/terms_service/terms_service.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/markdown/terms_service/terms_service.mdx -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/content/legal-notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/content/legal-notice.md -------------------------------------------------------------------------------- /public/content/privacy-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/content/privacy-policy.md -------------------------------------------------------------------------------- /public/content/terms-of-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/content/terms-of-service.md -------------------------------------------------------------------------------- /public/images/404-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/404-dark.svg -------------------------------------------------------------------------------- /public/images/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/404.svg -------------------------------------------------------------------------------- /public/images/about/about-image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/about/about-image-01.jpg -------------------------------------------------------------------------------- /public/images/about/about-image-02.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/about/about-image-02.webp -------------------------------------------------------------------------------- /public/images/about/about00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/about/about00.png -------------------------------------------------------------------------------- /public/images/blog/article-author-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/blog/article-author-01.png -------------------------------------------------------------------------------- /public/images/blog/article-author-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/blog/article-author-02.png -------------------------------------------------------------------------------- /public/images/blog/article-author-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/blog/article-author-03.png -------------------------------------------------------------------------------- /public/images/blog/article-author-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/blog/article-author-04.png -------------------------------------------------------------------------------- /public/images/blog/author-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/blog/author-01.png -------------------------------------------------------------------------------- /public/images/blog/author-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/blog/author-02.jpg -------------------------------------------------------------------------------- /public/images/blog/bannder-ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/blog/bannder-ad.png -------------------------------------------------------------------------------- /public/images/blog/blog-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/blog/blog-01.jpg -------------------------------------------------------------------------------- /public/images/blog/blog-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/blog/blog-02.jpg -------------------------------------------------------------------------------- /public/images/blog/blog-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/blog/blog-03.jpg -------------------------------------------------------------------------------- /public/images/blog/blog-details-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/blog/blog-details-01.jpg -------------------------------------------------------------------------------- /public/images/blog/blog-footer-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/blog/blog-footer-01.jpg -------------------------------------------------------------------------------- /public/images/blog/blog-footer-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/blog/blog-footer-02.jpg -------------------------------------------------------------------------------- /public/images/blog/dotted-shape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/blog/dotted-shape.svg -------------------------------------------------------------------------------- /public/images/blog/quote-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/blog/quote-bg.svg -------------------------------------------------------------------------------- /public/images/brands/C4GT.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/C4GT.webp -------------------------------------------------------------------------------- /public/images/brands/CD-dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/CD-dark.webp -------------------------------------------------------------------------------- /public/images/brands/CEDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/CEDB.png -------------------------------------------------------------------------------- /public/images/brands/CEDW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/CEDW.png -------------------------------------------------------------------------------- /public/images/brands/Coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/Coin.png -------------------------------------------------------------------------------- /public/images/brands/CoinDesk_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/CoinDesk_dark.png -------------------------------------------------------------------------------- /public/images/brands/GBS-Logo-B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/GBS-Logo-B.png -------------------------------------------------------------------------------- /public/images/brands/GBS-Logo-B2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/GBS-Logo-B2.svg -------------------------------------------------------------------------------- /public/images/brands/IB-week-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/IB-week-dark.png -------------------------------------------------------------------------------- /public/images/brands/India-Blockchain-Week.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/India-Blockchain-Week.png -------------------------------------------------------------------------------- /public/images/brands/TWSB.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/TWSB.webp -------------------------------------------------------------------------------- /public/images/brands/TWSW.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/TWSW.webp -------------------------------------------------------------------------------- /public/images/brands/ayroui-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/ayroui-white.svg -------------------------------------------------------------------------------- /public/images/brands/ayroui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/ayroui.svg -------------------------------------------------------------------------------- /public/images/brands/coindesk-logo.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/coindesk-logo.avif -------------------------------------------------------------------------------- /public/images/brands/deepek.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/deepek.PNG -------------------------------------------------------------------------------- /public/images/brands/g23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/g23.png -------------------------------------------------------------------------------- /public/images/brands/g24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/g24.png -------------------------------------------------------------------------------- /public/images/brands/graygrids-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/graygrids-white.svg -------------------------------------------------------------------------------- /public/images/brands/graygrids.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/graygrids.svg -------------------------------------------------------------------------------- /public/images/brands/img_BNB_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/img_BNB_Logo.png -------------------------------------------------------------------------------- /public/images/brands/lineicons-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/lineicons-white.svg -------------------------------------------------------------------------------- /public/images/brands/lineicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/lineicons.svg -------------------------------------------------------------------------------- /public/images/brands/manik.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/manik.PNG -------------------------------------------------------------------------------- /public/images/brands/rida.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/rida.PNG -------------------------------------------------------------------------------- /public/images/brands/tailgrids-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/tailgrids-white.svg -------------------------------------------------------------------------------- /public/images/brands/tailgrids.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/tailgrids.svg -------------------------------------------------------------------------------- /public/images/brands/uideck-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/uideck-white.svg -------------------------------------------------------------------------------- /public/images/brands/uideck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/brands/uideck.svg -------------------------------------------------------------------------------- /public/images/event/event1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/event/event1.jpeg -------------------------------------------------------------------------------- /public/images/footer/brands/ayroui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/footer/brands/ayroui.svg -------------------------------------------------------------------------------- /public/images/footer/brands/ecommerce-html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/footer/brands/ecommerce-html.svg -------------------------------------------------------------------------------- /public/images/footer/brands/graygrids.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/footer/brands/graygrids.svg -------------------------------------------------------------------------------- /public/images/footer/brands/lineicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/footer/brands/lineicons.svg -------------------------------------------------------------------------------- /public/images/footer/brands/plainadmin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/footer/brands/plainadmin.svg -------------------------------------------------------------------------------- /public/images/footer/brands/tailgrids.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/footer/brands/tailgrids.svg -------------------------------------------------------------------------------- /public/images/footer/brands/tailwindtemplates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/footer/brands/tailwindtemplates.svg -------------------------------------------------------------------------------- /public/images/footer/brands/uideck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/footer/brands/uideck.svg -------------------------------------------------------------------------------- /public/images/footer/shape-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/footer/shape-1.svg -------------------------------------------------------------------------------- /public/images/footer/shape-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/footer/shape-3.svg -------------------------------------------------------------------------------- /public/images/hero/brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/hero/brand.svg -------------------------------------------------------------------------------- /public/images/hero/hero-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/hero/hero-image.jpg -------------------------------------------------------------------------------- /public/images/hero/hero_video_new.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/hero/hero_video_new.mp4 -------------------------------------------------------------------------------- /public/images/icons/commudle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/icons/commudle.svg -------------------------------------------------------------------------------- /public/images/icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/icons/discord.svg -------------------------------------------------------------------------------- /public/images/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/icons/github.svg -------------------------------------------------------------------------------- /public/images/icons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/icons/image.png -------------------------------------------------------------------------------- /public/images/icons/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/icons/youtube.svg -------------------------------------------------------------------------------- /public/images/logos/logo-darkbg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/logos/logo-darkbg.svg -------------------------------------------------------------------------------- /public/images/logos/logo-lightbg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/logos/logo-lightbg.svg -------------------------------------------------------------------------------- /public/images/team/Aditya D.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Aditya D.jpg -------------------------------------------------------------------------------- /public/images/team/Anjali_Gautam.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Anjali_Gautam.jpeg -------------------------------------------------------------------------------- /public/images/team/Anushka_Tiwari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Anushka_Tiwari.jpg -------------------------------------------------------------------------------- /public/images/team/Ayushmaan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Ayushmaan.jpg -------------------------------------------------------------------------------- /public/images/team/Chiranth Raju C.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Chiranth Raju C.jpeg -------------------------------------------------------------------------------- /public/images/team/Divyam_Sharma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Divyam_Sharma.jpg -------------------------------------------------------------------------------- /public/images/team/Durgesh_Prajapati.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Durgesh_Prajapati.jpg -------------------------------------------------------------------------------- /public/images/team/Ghanshyam_Singh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Ghanshyam_Singh.jpg -------------------------------------------------------------------------------- /public/images/team/Harshit_verma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Harshit_verma.png -------------------------------------------------------------------------------- /public/images/team/Karishma_Seth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Karishma_Seth.jpg -------------------------------------------------------------------------------- /public/images/team/Manjeet_Singh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Manjeet_Singh.jpg -------------------------------------------------------------------------------- /public/images/team/Muskan_Kashyap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Muskan_Kashyap.jpg -------------------------------------------------------------------------------- /public/images/team/Piyush_prasad.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Piyush_prasad.jpeg -------------------------------------------------------------------------------- /public/images/team/Ramakrushna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Ramakrushna.jpg -------------------------------------------------------------------------------- /public/images/team/Rishi_Mondal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Rishi_Mondal.jpg -------------------------------------------------------------------------------- /public/images/team/Sayan_Rakshit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Sayan_Rakshit.jpg -------------------------------------------------------------------------------- /public/images/team/Sneha_kumari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Sneha_kumari.jpg -------------------------------------------------------------------------------- /public/images/team/Vedant_Anand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Vedant_Anand.jpg -------------------------------------------------------------------------------- /public/images/team/Yash_ku_saini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/Yash_ku_saini.jpg -------------------------------------------------------------------------------- /public/images/team/alok.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/alok.jpg -------------------------------------------------------------------------------- /public/images/team/dotted-shape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/dotted-shape.svg -------------------------------------------------------------------------------- /public/images/team/hetvi_popat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/hetvi_popat.jpg -------------------------------------------------------------------------------- /public/images/team/manishka.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/manishka.jpg -------------------------------------------------------------------------------- /public/images/team/sachit_sehgal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/sachit_sehgal.jpg -------------------------------------------------------------------------------- /public/images/team/sanskriti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/sanskriti.jpg -------------------------------------------------------------------------------- /public/images/team/shape-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/shape-2.svg -------------------------------------------------------------------------------- /public/images/team/yashika.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/team/yashika.jpg -------------------------------------------------------------------------------- /public/images/testimonials/author-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/testimonials/author-01.png -------------------------------------------------------------------------------- /public/images/testimonials/author-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/testimonials/author-02.png -------------------------------------------------------------------------------- /public/images/testimonials/author-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/public/images/testimonials/author-03.png -------------------------------------------------------------------------------- /schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/schema.json -------------------------------------------------------------------------------- /src/app/(site)/(auth)/forgot-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/(site)/(auth)/forgot-password/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/(auth)/reset-password/[token]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/(site)/(auth)/reset-password/[token]/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/(auth)/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/(site)/(auth)/signin/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/(auth)/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/(site)/(auth)/signup/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/(site)/about/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/blogs/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/(site)/blogs/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/blogs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/(site)/blogs/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/(site)/contact/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/createEvent/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/(site)/createEvent/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/editEvent/[id]/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/(site)/editEvent/[id]/_app.tsx -------------------------------------------------------------------------------- /src/app/(site)/editEvent/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/(site)/editEvent/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/error/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/(site)/error/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/events/[eventSlug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/(site)/events/[eventSlug]/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/events/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/(site)/events/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/(site)/pricing/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/projects/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/(site)/projects/page.tsx -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /src/app/api/auth/[auth0]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/api/auth/[auth0]/route.ts -------------------------------------------------------------------------------- /src/app/api/contex/ToasetContex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/api/contex/ToasetContex.tsx -------------------------------------------------------------------------------- /src/app/api/forgot-password/reset/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/api/forgot-password/reset/route.ts -------------------------------------------------------------------------------- /src/app/api/forgot-password/update/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/api/forgot-password/update/route.ts -------------------------------------------------------------------------------- /src/app/api/forgot-password/verify-token/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/api/forgot-password/verify-token/route.ts -------------------------------------------------------------------------------- /src/app/api/github/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/api/github/route.js -------------------------------------------------------------------------------- /src/app/api/payment/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/api/payment/route.ts -------------------------------------------------------------------------------- /src/app/api/register/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/api/register/route.ts -------------------------------------------------------------------------------- /src/app/head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/head.tsx -------------------------------------------------------------------------------- /src/app/icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/icon2.ico -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/About/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/About/index.tsx -------------------------------------------------------------------------------- /src/components/Animation/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Animation/Loading.tsx -------------------------------------------------------------------------------- /src/components/Auth/ForgotPassword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Auth/ForgotPassword/index.tsx -------------------------------------------------------------------------------- /src/components/Auth/MagicLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Auth/MagicLink/index.tsx -------------------------------------------------------------------------------- /src/components/Auth/ResetPassword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Auth/ResetPassword/index.tsx -------------------------------------------------------------------------------- /src/components/Auth/SignIn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Auth/SignIn/index.tsx -------------------------------------------------------------------------------- /src/components/Auth/SignUp/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Auth/SignUp/index.tsx -------------------------------------------------------------------------------- /src/components/Auth/SocialSignIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Auth/SocialSignIn.tsx -------------------------------------------------------------------------------- /src/components/Auth/SwitchOption/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Auth/SwitchOption/index.tsx -------------------------------------------------------------------------------- /src/components/Blog/AuthorQuote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Blog/AuthorQuote.tsx -------------------------------------------------------------------------------- /src/components/Blog/BlogSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Blog/BlogSection.tsx -------------------------------------------------------------------------------- /src/components/Blog/HomeBlogSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Blog/HomeBlogSection.tsx -------------------------------------------------------------------------------- /src/components/Blog/Newsletter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Blog/Newsletter.tsx -------------------------------------------------------------------------------- /src/components/Blog/PopularArticle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Blog/PopularArticle.tsx -------------------------------------------------------------------------------- /src/components/Blog/SharePost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Blog/SharePost.tsx -------------------------------------------------------------------------------- /src/components/Blog/SingleBlog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Blog/SingleBlog.tsx -------------------------------------------------------------------------------- /src/components/Blog/TagButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Blog/TagButton.tsx -------------------------------------------------------------------------------- /src/components/Blog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Blog/index.tsx -------------------------------------------------------------------------------- /src/components/CallToAction/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/CallToAction/index.tsx -------------------------------------------------------------------------------- /src/components/Clients/SingleClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Clients/SingleClient.tsx -------------------------------------------------------------------------------- /src/components/Clients/clientsData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Clients/clientsData.tsx -------------------------------------------------------------------------------- /src/components/Clients/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Clients/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Common/Breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/Common/ImageSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Common/ImageSlider.tsx -------------------------------------------------------------------------------- /src/components/Common/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Common/Loader.tsx -------------------------------------------------------------------------------- /src/components/Common/PreLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Common/PreLoader.tsx -------------------------------------------------------------------------------- /src/components/Common/ScrollUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Common/ScrollUp.tsx -------------------------------------------------------------------------------- /src/components/Common/SectionTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Common/SectionTitle.tsx -------------------------------------------------------------------------------- /src/components/Contact/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Contact/form.tsx -------------------------------------------------------------------------------- /src/components/Contact/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Contact/index.tsx -------------------------------------------------------------------------------- /src/components/Faq/SingleFaq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Faq/SingleFaq.tsx -------------------------------------------------------------------------------- /src/components/Faq/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Faq/index.tsx -------------------------------------------------------------------------------- /src/components/Features/InfiniteCarousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Features/InfiniteCarousel.css -------------------------------------------------------------------------------- /src/components/Features/InfiniteCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Features/InfiniteCarousel.tsx -------------------------------------------------------------------------------- /src/components/Features/SingleFeature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Features/SingleFeature.tsx -------------------------------------------------------------------------------- /src/components/Features/featuresData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Features/featuresData.tsx -------------------------------------------------------------------------------- /src/components/Features/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Features/index.tsx -------------------------------------------------------------------------------- /src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/Header/ThemeToggler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Header/ThemeToggler.tsx -------------------------------------------------------------------------------- /src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Header/menuData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Header/menuData.tsx -------------------------------------------------------------------------------- /src/components/Header/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Header/navbar.css -------------------------------------------------------------------------------- /src/components/Hero/hero.css: -------------------------------------------------------------------------------- 1 | @media (max-width:960px){ 2 | 3 | .robotiii{ 4 | display: none; 5 | } 6 | } -------------------------------------------------------------------------------- /src/components/Hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Hero/index.tsx -------------------------------------------------------------------------------- /src/components/LegalNotice/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/LegalNotice/index.tsx -------------------------------------------------------------------------------- /src/components/LinkdinPosts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/LinkdinPosts/index.tsx -------------------------------------------------------------------------------- /src/components/NotFound/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/NotFound/index.tsx -------------------------------------------------------------------------------- /src/components/Pricing/OfferList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Pricing/OfferList.tsx -------------------------------------------------------------------------------- /src/components/Pricing/PricingBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Pricing/PricingBox.tsx -------------------------------------------------------------------------------- /src/components/Pricing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Pricing/index.tsx -------------------------------------------------------------------------------- /src/components/Privacy/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Privacy/index.tsx -------------------------------------------------------------------------------- /src/components/ScrollToTop/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/ScrollToTop/index.tsx -------------------------------------------------------------------------------- /src/components/Team/SingleTeam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Team/SingleTeam.tsx -------------------------------------------------------------------------------- /src/components/Team/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Team/index.tsx -------------------------------------------------------------------------------- /src/components/Testimonials/SingleTestimonial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Testimonials/SingleTestimonial.tsx -------------------------------------------------------------------------------- /src/components/Testimonials/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/Testimonials/index.tsx -------------------------------------------------------------------------------- /src/components/eventData/bannerEvent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/eventData/bannerEvent.tsx -------------------------------------------------------------------------------- /src/components/eventData/eventBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/eventData/eventBanner.tsx -------------------------------------------------------------------------------- /src/components/eventData/eventCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/eventData/eventCard.tsx -------------------------------------------------------------------------------- /src/components/eventData/eventStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/eventData/eventStyles.css -------------------------------------------------------------------------------- /src/components/eventData/index.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/projectData/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/projectData/Card.tsx -------------------------------------------------------------------------------- /src/components/projectData/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/projectData/index.tsx -------------------------------------------------------------------------------- /src/components/projectData/projectBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/projectData/projectBanner.tsx -------------------------------------------------------------------------------- /src/components/projectData/projects.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/components/projectData/projects.css -------------------------------------------------------------------------------- /src/firebase/firebaseConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/firebase/firebaseConfig.js -------------------------------------------------------------------------------- /src/stripe/pricingData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/stripe/pricingData.ts -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /src/styles/prism-vsc-dark-plus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/styles/prism-vsc-dark-plus.css -------------------------------------------------------------------------------- /src/types/blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/types/blog.ts -------------------------------------------------------------------------------- /src/types/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/types/client.ts -------------------------------------------------------------------------------- /src/types/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/types/feature.ts -------------------------------------------------------------------------------- /src/types/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/types/menu.ts -------------------------------------------------------------------------------- /src/types/price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/types/price.ts -------------------------------------------------------------------------------- /src/types/team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/types/team.ts -------------------------------------------------------------------------------- /src/types/testimonial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/types/testimonial.ts -------------------------------------------------------------------------------- /src/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/utils/auth.ts -------------------------------------------------------------------------------- /src/utils/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/utils/email.ts -------------------------------------------------------------------------------- /src/utils/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/utils/markdown.ts -------------------------------------------------------------------------------- /src/utils/markdownToHtml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/utils/markdownToHtml.ts -------------------------------------------------------------------------------- /src/utils/prismaDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/utils/prismaDB.ts -------------------------------------------------------------------------------- /src/utils/validateEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/src/utils/validateEmail.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/lerp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVRhylme-Foundation/new-website/HEAD/types/lerp.d.ts --------------------------------------------------------------------------------