### Example Usage of ButtonProps with 'Get Started' Text Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/navbar/navbar-content/navbarcontent8 This example demonstrates how to use the `ButtonProps` interface to render a button with the text 'Get Started'. It highlights a common use case for the button component. ```javascript { children: 'Get Started' } ``` -------------------------------- ### Documentation Page Structure for UI-Kit Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/testimonial/testimonial5 This snippet defines the structure for the 'Getting Started' section of the UI-Kit documentation. It includes sub-pages for Prerequisites, Setup, and Deployment, along with their respective paths and types. ```javascript ("$", "$L31", null, {"pages": [{"id": "BDJg60kHbsk9Gd1MpU2k", "title": "Getting Started", "descendants": [{"id": "AsRHYC6vuqzgKvG3JNlP", "title": "Prerequisites", "href": "/saasable/ui-kit", "pathnames": ["", "getting-started/prerequisites"], "type": "document"}, {"id": "xj0boIqjeVr1FG1E1PBq", "title": "Setup", "href": "/saasable/ui-kit/getting-started/setup", "pathnames": ["getting-started/setup"], "type": "document"}, {"id": "XJlygvEsA1mvewdQ9J9Y", "title": "Deployment", "href": "/saasable/ui-kit/getting-started/deployment", "pathnames": ["getting-started/deployment"], "type": "document"}]}]}) ``` -------------------------------- ### Example Usage of Primary Button with Text Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/navbar/navbar-content/navbarcontent4 This code example demonstrates how to use the primary button component with a predefined text label, 'Get Started'. It serves as a clear illustration of integrating the button into the UI and configuring its display text. This is a direct usage example. ```javascript { children: 'Get Started' } ``` -------------------------------- ### Code Snippet: Get Started Button Configuration Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/integration/integration5 Defines the configuration for a primary contained button with the text 'Get Started'. This is a typical representation of component props in frameworks like React. ```javascript { variant: \"contained\", color: \"primary\", children: \"Get Starte ``` -------------------------------- ### Referencing Pricing Examples Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/pricing/pricing3 This snippet indicates where to find examples for the pricing component's implementation, directing users to 'See example in code above'. ```plaintext See example in code above ``` -------------------------------- ### JavaScript FAQ List Example Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/faq/faq6 An example demonstrating the structure of a JavaScript array for FAQ items. It shows how to format questions, answers, and categories. ```javascript [ { question: \"What are your operating hours?\", answer: \"We are open from 9 AM to 5 PM, Monday through Friday.\", category: \"General\" }, ... ] ``` -------------------------------- ### Example Clientele Partners Heading Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/clientele/clientele6 This snippet shows an example of a heading for the partners section within the Clientele component. ```plaintext "Our Partners" ``` -------------------------------- ### Outlined Button Example (React) Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/hero/hero1 Provides an example of an outlined button with 'Get Started' text, a link to '/get-started', and 'outlined' variant of large size. This code snippet is likely part of a React component. ```javascript { children: "Get Started", href: "/get-started", variant: "outlined", size: "large" } ``` -------------------------------- ### Displaying an Example Call to Action String Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/onboard This snippet showcases an example of a call-to-action string that might be used in marketing or user onboarding. The string encourages users to explore features and sign up for early access, intended for display in a UI element. ```plaintext "Get started by exploring the features we offer and sign up for early access." ``` -------------------------------- ### Example of Button Usage with Children Prop (TypeScript) Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/navbar/navbar-content/navbarcontent6 This snippet shows an example of how to use the ButtonProps interface, specifically demonstrating the 'children' prop for a primary button. The 'Get Started' text is passed as children to the button component. ```typescript primaryBtn = { children: 'Get Started' } ``` -------------------------------- ### Adaptive Visitor Context Provider Setup (JavaScript) Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/clientele/clientele4 This snippet details the setup for the AdaptiveVisitorContextProvider, likely responsible for managing visitor-specific contexts, possibly for personalized experiences. It imports various JavaScript modules. ```javascript self.__next_f.push([ 1, "86117", [ "2122", "static/chunks/9071f66d-c7c7a12855f487bf.js", "9421", "static/chunks/9421-3cf6074938b43f2e.js", "146", "static/chunks/146-6aff29c424b703ea.js", "2580", "static/chunks/2580-7f1f4361bc5fde28.js", "1269", "static/chunks/1269-4e20926a635db3e7.js", "6537", "static/chunks/6537-e08a4611f0c7747b.js", "7762", "static/chunks/7762-85e3ac82069b0ea0.js", "2948", "static/chunks/2948-ef1fba6e963eaab2.js", "8617", "static/chunks/app/sites/static/[mode]/[siteURL]/[siteData]/(content)/[pagePath]/page-32d1517c0b6523f3.js" ], "AdaptiveVisitorContextProvider" ]) ``` -------------------------------- ### Displaying FAQ Section Introduction (JavaScript) Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/faq/faq8 This snippet displays an introductory sentence for an FAQ section, formatted to appear as code. The text 'Here are some answers to frequently asked questions about our services.' is a placeholder for the actual introductory message. ```javascript self.__next_f.push([46, ["$", "div", null, {"aria-labelledby": "$undefined", "className": "blocks w-full space-y-2 lg:space-y-3 leading-normal self-center **:text-left text-left", "children": [["$", "p", "u6FArsX7lkXx", {"className": "mx-auto page-width-wide:mx-0 decoration-primary/6 print:break-inside-avoid w-full max-w-[unset] text-start justify-self-start", "children": [["$", "$1", "00wvghLg7GJs", {"children": [["$", "$1", "0", {"children": ["$", "code", "mark", {"className": "py-px px-1.5 min-w-6.5 justify-center items-center ring-1 ring-inset ring-tint bg-tint rounded-sm text-[.875em] leading-[calc(max(1.20em,1.25rem))]", "children": "\\"Here are some answers to frequently asked questions about our services.\\""}]}]}]}]}]]) ``` -------------------------------- ### Documentation Navigation Structure for SaasAble Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/navbar/navbar10 This snippet outlines the hierarchical structure of the documentation navigation for SaasAble. It includes top-level groups like 'Getting Started' with nested documents for 'Prerequisites', 'Setup', and 'Deployment'. This structure helps users find information efficiently. ```json { "pages": [ { "id": "BDJg60kHbsk9Gd1MpU2k", "title": "Getting Started", "descendants": [ { "id": "AsRHYC6vuqzgKvG3JNlP", "title": "Prerequisites", "href": "/saasable/ui-kit", "pathnames": ["", "getting-started/prerequisites"], "type": "document" }, { "id": "xj0boIqjeVr1FG1E1PBq", "title": "Setup", "href": "/saasable/ui-kit/getting-started/setup", "pathnames": ["getting-started/setup"], "type": "document" }, { "id": "XJlygvEsA1mvewdQ9J9Y", "title": "Deployment", "href": "/saasable/ui-kit/getting-started/deployment", "pathnames": ["getting-started/deployment"], "type": "document" } ], "type": "group" }, { "id": "1wqU0GVfDOBnEiDVT5I3", "title": "Core Components", "descendants": [], "type": "group" } ] } ``` -------------------------------- ### Render Primary Button with Children Content Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/navbar/navbar-content/navbarcontent1 This code demonstrates how to render a primary button with specific child content, such as 'Get Started'. It signifies the use of the primary button for key actions. ```javascript // Rendering a primary button with children content { children: 'Get Started' } ``` -------------------------------- ### Example Button Configuration Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/feature/feature13 This snippet provides an example of how to configure a button, specifying its variant, color, and the text it displays. This is useful for demonstrating button usage. ```javascript { variant: 'contained', color: 'primary', children: 'Learn More' } ``` -------------------------------- ### Configuring a Contained Primary Button Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/hero/hero7 This snippet shows a JavaScript object representing the configuration for a UI button. It specifies the button's variant as 'contained', color as 'primary', and the text content as 'Get Started'. ```javascript ["$","p","GbaItMtH2NF1",{"className":"mx-auto page-width-wide:mx-0 decoration-primary/6 print:break-inside-avoid w-full max-w-[unset] text-start justify-self-start","children":[["$","$1","SnNq4kBPxNGi",{"children":[["$","$1","0",{"children":["$","code","mark",{"className":"py-px px-1.5 min-w-6.5 justify-center items-center ring-1 ring-inset ring-tint bg-tint rounded-sm text-[.875em] leading-[calc(max(1.20em,1.25rem))]","children":"{ variant: \\"contained\\\", color: \\"primary\\\", children: \\"Get Started\\" }"}]}]}]}] ``` -------------------------------- ### Site Layout Context Provider Setup (JavaScript) Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/clientele/clientele4 This snippet shows the initialization of the SiteLayoutContextProvider, which manages layout-specific contexts for the site. It also relies on several JavaScript chunk files for its functionality. ```javascript self.__next_f.push([ 1, "4788", [ "9421", "static/chunks/9421-3cf6074938b43f2e.js", "2580", "static/chunks/2580-7f1f4361bc5fde28.js", "8830", "static/chunks/8830-34490b5a940d377a.js", "1269", "static/chunks/1269-4e20926a635db3e7.js", "7762", "static/chunks/7762-85e3ac82069b0ea0.js", "4790", "static/chunks/4790-dbd980992351f9d9.js", "1879", "static/chunks/1879-5a8f57d629a164b5.js", "559", "static/chunks/app/sites/static/[mode]/[siteURL]/[siteData]/(content)/layout-204c084185739c8d.js" ], "SpaceLayoutContextProvider" ]) ``` -------------------------------- ### GetInTouchProps Structure Example (JavaScript) Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/faq/faq4 This code snippet illustrates the structure of the GetInTouchProps object. It is used to define properties for a 'Get in Touch' component, including a title, description, and a link with its destination and children text. This is useful for creating contact or support sections in an application. ```javascript { title: \"Need More Assistance?\", description: \"If you have any further questions, please reach out to our support team.\", link: { href: \"/contact\", children: \"Contact Us\" } } ``` -------------------------------- ### NavbarContent9 Component Code Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/navbar/navbar-content/navbarcontent9 This snippet shows the structure of the NavbarContent9 component, which renders a responsive navigation bar. It includes a logo, navigation menus for larger screens, and a popper menu for smaller screens. It also handles user sign-in and a 'Get Started' button. ```tsx src/blocks/navbar/navbar-content/NavbarContent9.tsx ``` -------------------------------- ### Application Configuration and Initialization Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/about/about-1 This snippet reveals the application's initialization configuration, including theme settings, link behavior, AI mode, and base paths. It also details the setup for visitor claims, tracking, and event URLs, suggesting a data-driven and potentially personalized user experience. ```javascript 18:["$","$L19",null,{"contextId":"$undefined","forcedTheme":"light","externalLinksTarget":"self","children":["$","$L1a",null,{"aiMode":"none","trademark":true,"children":["$","$L1b",null,{"basePath":"/saasable/ui-kit","children":["$","$L1c",null,{"contextId":"$undefined","visitorClaimsURL":"https://phoenixcoded.gitbook.io/saasable/~gitbook/visitor","children":["$","$L1d",null,{"organizationId":"-LnuU-VL0Ii_p0-bShNe","siteId":"site_UTRZi","siteSectionId":null,"siteSpaceId":"sitesp_oP7DI","siteShareKey":null,"spaceId":"VGBNCa1hIxmcC9OP3YAi","revisionId":"PNWTHjfN5Tjcwc95"})self.__next_f.push([1,"DD3W\",\"visitorAuthClaims\":{},\"children\":[\"$\",\"$L1e\",null, {\"appURL\":\"https://app.gitbook.com\", \"visitorCookieTrackingEnabled\":true, \"children\":[\"$\",\"$L1f\",null, {\"enabled\":true, \"eventUrl\":\"https://phoenixcoded.gitbook.io/saasable/~gitbook/__evt?o=-LnuU-VL0Ii_p0-bShNe&s=site_UTRZi\", \"children\":[\"$\",\"$L20\",null, {\"renderMessageOptions\":\"$undefined\", \"children\":[\"$L21\",[\"$\",\"header\",null, {\"id\":\"site-header\", \"className\":\"flex flex-col h-[64px] sticky top-0 z-30 w-full flex-none shadow-[0px_1px_0px] shadow-tint-12/2 bg-tint-base/9 theme-muted:"}]}]}]}]}]}] ``` -------------------------------- ### Navigation Structure for SaasAble Documentation Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/integration/integration3 This snippet represents the hierarchical structure of the SaasAble documentation, organized into pages and their descendants. It includes page IDs, titles, and links to specific documents within sections like 'Getting Started'. The structure facilitates navigation and access to relevant information. ```json { "pages": [ { "id": "BDJg60kHbsk9Gd1MpU2k", "title": "Getting Started", "descendants": [ { "id": "AsRHYC6vuqzgKvG3JNlP", "title": "Prerequisites", "href": "/saasable/ui-kit", "pathnames": [ "", "getting-started/prerequisites" ], "type": "document" }, { "id": "xj0boIqjeVr1FG1E1PBq", "title": "Setup", "href": "/saasable/ui-kit/getting-started/setup", "pathnames": [ "getting-started/setup" ], "type": "document" }, { "id": "XJlygvEsA1mvewdQ9J9Y", "title": "Deployment", "href": "/saasable/ui-kit/getting-started/deployment", "pathnames": [ "getting-started/deployment" ], "type": "document" } ] } ] } ``` -------------------------------- ### Example Contact Information Object Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/faq/faq6 An example object demonstrating the structure and content for contacting support. It includes a title, a descriptive message, and a link to a contact page. ```javascript { title: "Need Further Assistance?", description: "If you have more questions or need additional help, don't hesitate to contact us.", link: { href: "/contact", children: "Contact Us" } } ``` -------------------------------- ### Displaying String Data Type in Code Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/contact-us/contactus2 This snippet shows how to represent the 'string' data type within a code context. It's useful for documentation, type hints, or examples in programming guides. The markup indicates it's part of a larger structured content format. ```jsx { "children": [ "$", "code", "mark", { "className": "py-px px-1.5 min-w-6.5 justify-center items-center ring-1 ring-inset ring-tint bg-tint rounded-sm text-[.875em] leading-[calc(max(1.20em,1.25rem))]", "children": "string" } ] } ``` -------------------------------- ### Faq2 Component Usage Example Path Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/faq/faq2 This snippet provides the file path where the Faq2 component is utilized as a block in the application, demonstrating its integration. ```typescript src/app/blocks/faq/faq2/page.tsx ``` -------------------------------- ### Faq6 Component Usage Example Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/faq/faq6 This code snippet demonstrates how to use the Faq6 component, including defining its props such as heading, caption, default expanded panel, FAQ list, get in touch details, and categories. It showcases a typical implementation for rendering a FAQ section. ```typescript import Faq6 from "src/blocks/faq/Faq6"; const faqData = { heading: "Frequently Asked Questions", caption: "Find answers to common questions and get more information here.", defaultExpanded: "panel0", faqList: [ { question: "What are your operating hours?", answer: "We are open from 9 AM to 5 PM, Monday through Friday.", category: "General" }, { question: "How can I reset my password?", answer: "You can reset your password by clicking the 'Forgot Password' link on the login page.", category: "Account" } ], getInTouch: { title: "Need Further Assistance?", description: "If you have more questions or need additional help, don't hesitate to contact us.", link: { href: "/contact", children: "Contact Us" } }, categories: ["General", "Account", "Billing"], activeCategory: "General" }; function FaqSection() { return ; } ``` -------------------------------- ### ContactUs1 Component Description - Code Example Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/contact-us/contactus1 This snippet illustrates the expected string content for a code element within the ContactUs1 component's description. It specifically shows the string "Get in Touch" which likely represents a button label or section heading. ```javascript "Get in Touch" ``` -------------------------------- ### Display FAQ introductory sentence as code Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/faq/faq7 This snippet renders an introductory sentence for an FAQ section, formatted as code. It includes CSS classes for styling the code presentation, likely for emphasis or a specific UI pattern. ```Unknown ["$","code","mark",{"className":"py-px px-1.5 min-w-6.5 justify-center items-center ring-1 ring-inset ring-tint bg-tint rounded-sm text-[.875em] leading-[calc(max(1.20em,1.25rem))]","children":"\\"Here are some answers to frequently asked questions about our services.\\""}] ``` -------------------------------- ### NavbarContent8 Component - TypeScript Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/navbar/navbar-content/navbarcontent8 The NavbarContent8 component dynamically displays a responsive navigation bar. It splits navigation items for larger screens and uses a popper menu for smaller screens, including a logo and a 'Get Started' button. All props are managed within the component's file. ```typescript import React from 'react'; import { ButtonProps, NavItemProps } from '../types'; interface NavbarContent8Props { navItems?: Array; primaryBtn?: ButtonProps; secondaryBtn?: ButtonProps; customization?: boolean; } const NavbarContent8: React.FC = ({ navItems, primaryBtn, secondaryBtn, customization, }) => { // Component implementation details would go here return (
{/* Navbar content rendering logic */}
); }; export default NavbarContent8; ``` -------------------------------- ### Example of 'plans' keyword Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/pricing/pricing1 Highlights the usage of the 'plans' keyword, likely used to denote a section or variable related to pricing plans. This aids in semantic understanding of the code. ```html plans ``` -------------------------------- ### Button Configuration Example Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/topoffer/topoffer2 This example demonstrates a configuration object for a primary button. It includes the button's text ('Subscribe'), an associated click handler function ('handleSubscribe'), and specifies the button's variant as 'contained'. ```javascript { text: 'Subscribe', onClick: handleSubscribe, variant: 'contained' } ``` -------------------------------- ### Detect Cloudflare Misconfiguration Error in JavaScript Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/blog/blog1 This JavaScript code checks if 'rocket-loader.min.js' is present in the page's scripts. If found, it injects an error message into the DOM, alerting the user to a potential Cloudflare misconfiguration on the site. This helps identify and guide users to fix common Cloudflare setup issues. ```javascript document.addEventListener("DOMContentLoaded", () => { if (Array.from(document.scripts).find(script => script.src.includes('rocket-loader.min.js'))) { const alert = document.createElement('div'); alert.className = 'p-4 mb-4 text-sm text-red-800 rounded-lg bg-red-50 mt-8 mx-8'; alert.innerHTML = ` Error in site configuration: It looks like ${window.location.hostname} has been incorrectly configured in Cloudflare. This may lead to unexpected behavior or issues with the page loading. If you are the owner of this site, please refer to GitBook's documentation for steps to fix the problem. `; document.body.prepend(alert); } }); ``` -------------------------------- ### Hero11 Component Usage (TypeScript) Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/hero/hero11 Example of how to use the Hero11 component in a React application. It demonstrates passing various props to configure the headline, caption, review data, buttons, helper text, images, benefit statistics, and slider content. This setup utilizes MUI for styling and responsive design. ```typescript import Hero11 from 'src/blocks/hero/Hero11'; import { BenefitDataProps, ListDataProps } from 'src/types'; import { ButtonProps } from '@mui/material'; // Example data for the component const headlineText: string = "Effortless CRM Management, Seamless Business Growth"; const captionText: string = "Discover innovative solutions tailored to your needs."; const reviewInfo = { avatarList: ["/avatars/user1.jpg", "/avatars/user2.jpg"], rating: 4.5, totalReviews: "150 reviews" }; const primaryButtonProps: ButtonProps = { variant: "contained", color: "primary", children: "Subscribe Now" }; const helper: string = "Stay updated with our latest news."; const mainImage = { light: '/images/hero/hero11-light.png', dark: '/images/hero/hero11-dark.png' }; const benefitStats: { data1: BenefitDataProps, data2: BenefitDataProps } = { data1: { counter: "50+", caption: "Projects Completed", defaultUnit: "+" }, data2: { counter: "20", caption: "Years of Experience" } }; const sliderTitleText: string = "Our Key Features"; const sliderItems: ListDataProps[] = [ { icon: "/icons/star.svg", title: "Feature One" }, { icon: "/icons/heart.svg", title: "Feature Two" }, { icon: "/icons/settings.svg", title: "Feature Three" } ]; // Rendering the Hero11 component ; ``` -------------------------------- ### Example FAQ List Data Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/faq/faq5 Provides an example array of FAQ items, demonstrating the structure defined by the '{ question: string, answer: string }' type. This data can be used to populate a FAQ section in a user interface. ```javascript [{ question: "What is your return policy?", answer: "You can return items within 30 days of purchase." }, ...] ``` -------------------------------- ### Responsive Navbar Component Implementation Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/navbar/navbar-content/navbarcontent2 This code defines a responsive navigation bar component named 'NavbarContent2'. It includes a logo, navigation menu, localization selector, and a 'Get Started' button. The component utilizes Material-UI's breakpoints and conditional rendering to adjust its layout across different screen sizes. ```typescript This code defines a responsive navigation bar component ("} ``` -------------------------------- ### Pricing5 Component Usage Example Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/pricing/pricing5 This snippet demonstrates how to use the Pricing5 component within your application. It shows the path to the page where the component is integrated, allowing for direct reference and modification of its usage. ```tsx src/app/blocks/pricing/pricing5/page.tsx ``` -------------------------------- ### Clientele Component ClienteleList Prop Example Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/clientele/clientele2 Shows the expected structure for the 'clienteleList' prop of the Clientele component. This prop is essential for providing the data that the component will use to render the client logos. ```plain text clienteleList ``` -------------------------------- ### NavbarContent8 Component Usage and Props Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/navbar/navbar-content/navbarcontent8 This snippet describes the NavbarContent8 component, which dynamically displays a responsive navigation bar. It splits navigation items for larger screens and uses a popper menu for smaller screens, including a logo and a 'Get Started' button. All available props are managed within the component's usage path. ```plaintext This component, NavbarContent8, dynamically displays a responsive navigation bar that splits provided navigation items into two groups for larger screens and utilizes a popper menu for smaller screens, incorporating a logo and a "Get Started" button. ``` -------------------------------- ### Pricing Plan Structure Example Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/pricing/pricing7 An example illustrating the structure for pricing plan details. This includes the plan's title, description, price, a list of features, and a call-to-action link. It's a common pattern for presenting tiered subscription options. ```json { "title": "Pro Plan", "description": "Ideal for growing businesses.", "price": "$29/month", "features": [ "Feature 1", "Feature 2", "Feature 3" ], "link": "/signup" } ``` -------------------------------- ### NavbarContent3 Component Definition and Props Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/navbar/navbar-content/navbarcontent3 This snippet defines the NavbarContent3 component, responsible for rendering a responsive navigation bar. It includes a logo, navigation menu, search input, and a 'Get Started' button. The component utilizes Material-UI for responsive design and conditional rendering. All available props for this component are managed within the specified file. ```tsx This code defines a responsive navigation bar component (\"NavbarContent3\") that includes a logo, navigation menu, search input, and \"Get Started\" button, with layout and visibility adjustments based on screen size using Material-UI's breakpoints and conditional rendering.\nAll available props for the NavbarContent3 component are defined and handled within the Component usage path file. This allows for easy modifications to the content of the NavbarContent section. ``` -------------------------------- ### FAQ General Introduction Text Source: https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/faq/faq5 Provides the general introductory text for the FAQ section. This text informs users about the content of the FAQ. ```plaintext Here are answers to some of the most common questions we receive. ```