Skip to content

Commit

Permalink
fix: implemented the pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
isaaclindenman authored and Goldziher committed Jan 15, 2024
1 parent 2875c3a commit bdbdf71
Show file tree
Hide file tree
Showing 20 changed files with 226 additions and 302 deletions.
21 changes: 19 additions & 2 deletions frontend/public/messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,27 @@
"invalidNameErrorMessage": "Name must be unique"
},
"landingPage": {
"benefitsPrivacyDescription": "We don't save any of your users' data. We act as a pure pipeline between your users' device and the AI models.",
"benefitsPrivacyTitle": "0% of Your Users Data Saved. ",
"benefitsScalabilityDescription": "Integrate in minutes, scale to millions. BaseMind allows you to focus on your product, not your infrastructure.",
"benefitsScalabilityTitle": "Scalable Infrastructure. ",
"benefitsSpeedDescription": "Built with Golang and GRPC, BaseMind delivers exceptional speed, outperforming traditional backends with swift response times and scalable performance.",
"benefitsSpeedTitle": "Lightning Speed. ",
"better": "better",
"ctaSectionSubtitle": "Sign-up to our free beta, No credit card required.",
"ctaSectionTitle": "Your AI journey starts here.",
"faqACostToStart": "Starting with BaseMind is free, and no credit card is required. We provide initial credits worth a dollar for AI model usage, which typically lasts for hundreds to thousands of calls. For production use, we offer customized packages that scale with your needs and fit every stage of your AI journey.",
"faqADoYouSaveMyUserData": "No, we don't store any of your user data or requests. Privacy is a priority, so rest assured, 0% of your data is saved on our servers.",
"faqAFasterThanBackend": "Yes, our system, built with Golang and GRPC, is much faster than a typical custom backend. Plus, our systems can scale with your needs, ensuring efficiency as your app grows.",
"faqAHelpWithSDK": "Definitely! Just contact us and we'll guide you through the implementation process.",
"faqAIsItSecure": "Yes, it's secure. With our SDK, storing the key in your app is safe thanks to GRPC encryption. Plus, even if someone accesses the key, they can only use the prompts you configured.",
"faqANeedOpenAIKey": "No, an OpenAI key isn't necessary. Just sign up, create a key for your app, and manage all AI model billing through BaseMind without exposing your OpenAI key.",
"faqQCostToStart": "How much does it cost, and do I need a credit card to start using BaseMind?",
"faqQDoYouSaveMyUserData": "Do you save my user data or requests?",
"faqQFasterThanBackend": "Are you faster than a custom backend?",
"faqQHelpWithSDK": "Can you help me implement the BaseMind SDK?",
"faqQIsItSecure": "Is it secure to store the BaseMind key in my mobile app?",
"faqQNeedOpenAIKey": "Do I need an OpenAI key to use BaseMind?",
"faqTitle": "Frequently Asked Questions",
"featureDashboardDescription": "Empower your team with a user-friendly dashboard. Make real-time changes without waiting for a new release.",
"featureDashboardTitle": "Prompt Management",
Expand All @@ -204,9 +222,8 @@
"featureServerlessTitle": "Serverless AI",
"featureStreamingDescription": "Easily stream API responses from AI models",
"featureStreamingTitle": "Streaming Enabled",
"featureVendorAgnosticDescription": "Avoid vendor lock-in with a vendor-agnostic approach that future-proof your AI",
"featureVendorAgnosticDescription": "Avoid vendor lock-in with a vendor-agnostic approach that future-proofs your AI",
"featureVendorAgnosticTitle": "One SDK to rule them all",
"footerCopyright": "Copyright © 2024 - All right reserved to BaseMind Inc",
"general": "General",
"heroSubtitle": "The BaseMind SDK accelerates AI feature development by enabling you to focus on creating value through your AI features, rather than spending time on building and maintaining infrastructure.",
"heroTitle": "Implement AI with a few lines of code",
Expand Down
8 changes: 5 additions & 3 deletions frontend/src/app/[locale]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import BenefitsSection from '@/components/static-site/benefits';
import '../../styles/landing-page.scss';

import { BenefitsSection } from '@/components/static-site/benefits';
import { CTASection } from '@/components/static-site/cta-section';
import FAQSection from '@/components/static-site/faq-section';
import { FAQSection } from '@/components/static-site/faq-section';
import { FeatureSection } from '@/components/static-site/features-section';
import { Footer } from '@/components/static-site/footer';
import { StaticPageHeader } from '@/components/static-site/header';
import { HeroSection } from '@/components/static-site/hero-section';
import PricingSection from '@/components/static-site/pricing-section';
import { PricingSection } from '@/components/static-site/pricing-section';
import { TrackStaticPage } from '@/components/static-site/track-static-page';

export default function LandingPage() {
Expand Down
Loading

0 comments on commit bdbdf71

Please sign in to comment.