diff --git a/apps/web/src/app/(main)/about/page.tsx b/apps/web/src/app/(main)/about/page.tsx deleted file mode 100644 index 906c15d4..00000000 --- a/apps/web/src/app/(main)/about/page.tsx +++ /dev/null @@ -1,230 +0,0 @@ -import Image from 'next/image' -import { - AritraImg, - AtanuImg, - RajdipImg, - SambitImg, - SawanImg, - SwatiImg -} from '@public/about/team' -import { ColorBGSVG } from '@public/hero' -import { TracingBeam } from '@/components/ui/tracing-beam' - -const teamData = [ - { - name: 'Sawan Bhattacharya', - role: 'Founder & CEO', - img: SawanImg, - socials: { - twitter: 'https://twitter.com/kriptonian8', - linkedin: 'https://www.linkedin.com/in/sawan-bhattacharya/' - } - }, - { - name: 'Rajdip Bhattacharya', - role: 'Founder & CTO', - img: RajdipImg, - socials: { - twitter: 'https://twitter.com/RajB47', - linkedin: 'https://www.linkedin.com/in/rajdip-bhattacharya-581119232/' - } - }, - { - name: 'Swatilakha Saha', - role: 'CMO', - img: SwatiImg, - socials: { - twitter: 'https://twitter.com/swatilakha', - linkedin: 'https://www.linkedin.com/in/aritra-biswas-833a3522b/' - } - }, - { - name: 'Aritra Biswas', - role: 'CFO', - img: AritraImg, - socials: { - linkedin: 'https://www.linkedin.com/in/rajdip-bhattacharya-581119232/' - } - }, - { - name: 'Atanu Majumdar', - role: 'UI/UX Designer', - img: AtanuImg, - socials: { - twitter: 'https://twitter.com/kairen_me', - linkedin: 'https://www.linkedin.com/in/atanu-majumdar-48010b154/' - } - }, - { - name: 'SAMBIT CHAKRABORTY', - role: 'AI Engineer', - img: SambitImg, - socials: { - twitter: 'https://twitter.com/SambitChakrabo8', - linkedin: 'https://www.linkedin.com/in/sambit-chakraborty-509343248/' - } - } -] - -function About(): React.JSX.Element { - return ( -
- - -
-
-
-

The Problem

-

- We believe Configuration Mangement is an easily overlooked part - of software developement, all teams need it and all teams do it, - but not in a proper systematic way, sometimes secrets are shared - over slack ,sometimes over direct messages and often over email. - This may be an easier solution in the beginning but as the size - of your app grows , so does the amount of secrets you have to - hide. That is when you start facing problems. -

-
-
-

- What we’re building -

-

- How about a tool that can help you manage all your - configurations with best in class security, and also streamline - changes made to them to propagate to all applications that use - them? How about a tool that helps you collaborate on - configuration management like never before? This is where - keyshade comes in -
-
- keyshade is an open source configuration management platform - that allows you to manage your secrets and variables in most - logical way possible. It is a tool made with developer's - ease at the top of mind, so, expect to never get blocked out by - overwhelming complexity or steep learning curve. -
-
- Our ecosystem of plugins allow you to integrate keyshade with - any cloud provider on the planet! Are you consuming an API key - in your GitHub Action workflow? No need to manage the `secrets` - section. Rather let keyshade do the integration for you! Any - time that you change a config in your dashboard, any and every - application that uses that will also get updated accordingly - - enabling you to not worry about restarting your application. -

-
-
-

Our Mission

-

- At Keyshade, our mission is to revolutionize the way developers - manage configurations, secrets, and variables in their - applications. We strive to provide a comprehensive solution that - not only ensures top-notch security but also simplifies the - entire process, allowing teams to collaborate seamlessly and - focus on what truly matters: building great software. Our goal - is to empower developers with the tools they need to efficiently - manage configurations across any scale, enabling them to stay - agile and responsive in today's fast-paced development - environment. -

-
-
-
-
-

Team

-

- We are a team of passionate individuals who are dedicated to - creating innovative solutions that empower developers and teams - to build better software. Our team is made up of talented field - experts who bring a wealth of experience and knowledge to the - table. We are committed to delivering a product that exceeds - expectations and provides real value to our users. Our goal is - to make configuration management simple, secure, and efficient, - so that developers can focus on what they do best: creating - amazing software. -

-
-
- {teamData.map((members, index) => { - return ( -
- Atanu -
-
-

{members.name}

-

{members.role}

-
-
- {members.socials.twitter ? ( - - - - - - ) : null} - {members.socials.linkedin ? ( - - - - - - - - - - - - - ) : null} -
-
-
- ) - })} -
-
-
-
-
- ) -} - -export default About diff --git a/apps/web/src/components/shared/navbar/index.tsx b/apps/web/src/components/shared/navbar/index.tsx index 3c764c81..2dcd6453 100644 --- a/apps/web/src/components/shared/navbar/index.tsx +++ b/apps/web/src/components/shared/navbar/index.tsx @@ -25,9 +25,6 @@ function Navbar(): React.JSX.Element { Docs -
  • - About -
  • Pricing