### Bootstrap 5.3 Theming Example Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/sidebar/sidebar-2/sidebar-2.component.html This snippet illustrates the content and structure when the application's theme is set to 'bootstrap5.3'. It mirrors the Tailwind CSS example, showcasing the adaptability of the UI kit across different frameworks. ```html @else if (currentTheme === 'bootstrap5.3') {  Company Name {{data.field}} 99+ * * * News Events People Groups Resources * Cards * Widgets * Components Office Adaptive Tiles Meeting There was a problem with your network connection. } ``` -------------------------------- ### Tailwind CSS Theming Example Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/ai-pricing-table/ai-pricing-table-1/ai-pricing-table-1.component.html This code snippet demonstrates the UI structure when the 'tailwind' theme is active. It displays plan options with feature lists and pricing. ```html @if (currentTheme === 'tailwind') { Select plan Upgrade to access * Unlimited searches, interactions, and history * Access to our GPT 3.5 model * Access to web, ios, and Android apps * Mobile accessibility * Standard customer support * Basic reporting and analytics Free $0 / month ---------- Standard $28 / month ----------- Pro $48 / month ----------- } ``` -------------------------------- ### Tailwind Theme Example Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/ai-card/ai-card-3/ai-card-3.component.html This snippet demonstrates the content structure when the 'tailwind' theme is active. It includes project management, time tracking, resource planning, and invoicing sections. ```html @if (currentTheme === 'tailwind') { Project management ------------------ Create tasks, track time, and update progress all in one place. Time tracking ------------- Discover how much time your team is spending on their work. Resource planning ----------------- Monitor how your resources are utilized across projects. Invoicing --------- Invoice based on reported time for accurate billing. } ``` -------------------------------- ### Bootstrap 5.3 Theme Example Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/unlock-session/unlock-session-3/unlock-session-3.component.html This snippet shows the content rendered when the 'bootstrap5.3' theme is active. It mirrors the structure of the Tailwind example, offering a similar user experience with Bootstrap styling. ```html } @else if (currentTheme === 'bootstrap5.3') { Welcome to our design system ============================ The Bootstrap Design System helps developers build organized and well-coded dashboards full of beautiful and rich modules. Join us and start building your application today. * 70+ components * Light and dark themes supported * 100% automatic layouts * 200+ reusable blocks to build templates easily  Company Name ------------ Unlock your session ------------------- Your session is locked due to inactivity Email Return to [Sign in](javascript:void(0);) } ``` -------------------------------- ### Tailwind Theme Example Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/signin-otp/signin-otp-3/signin-otp-3.component.html This snippet demonstrates the content displayed when the 'tailwind' theme is active. It includes welcome messages, feature lists, and form elements like OTP input. ```html @if (currentTheme === 'tailwind') { Welcome to our design system ============================ The Tailwind Design System helps developers build organized and well-coded dashboards full of beautiful and rich modules. Join us and start building your application today. * 70+ components * Light and dark themes supported * 100% automatic layouts * 200+ reusable blocks to build templates easily  Company Name ------------ Enter OTP --------- We have sent an OTP to your mobile number Not yet received? [Resend OTP](javascript:void(0);) } ``` -------------------------------- ### Bootstrap 5.3 Theming Example Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/ai-pricing-table/ai-pricing-table-1/ai-pricing-table-1.component.html This code snippet illustrates the UI layout when the 'bootstrap5.3' theme is applied. It presents similar plan details but styled according to Bootstrap conventions. ```html } @else if (currentTheme === 'bootstrap5.3') { Select plan Upgrade to access * Unlimited searches, interactions, and history * Access to our GPT 3.5 model * Access to web, ios, and Android apps * Mobile accessibility * Standard customer support * Basic reporting and analytics Free $0 -- / month Standard $28 --- / month pro $48 --- / month } ``` -------------------------------- ### Tailwind Theme Example Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/unlock-session/unlock-session-3/unlock-session-3.component.html This snippet demonstrates the structure and content displayed when the 'tailwind' theme is active. It includes welcome messages, feature lists, and UI elements for a login-like interface. ```html @if (currentTheme === 'tailwind') { Welcome to our design system ============================ The Tailwind Design System helps developers build organized and well-coded dashboards full of beautiful and rich modules. Join us and start building your application today. * 70+ components * Light and dark themes supported * 100% automatic layouts * 200+ reusable blocks to build templates easily  Company Name ------------ Unlock your session ------------------- Your session is locked due to inactivity Email Return to [Sign in](javascript:void(0);) } ``` -------------------------------- ### Tailwind Theme Example Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/sidebar/sidebar-4/sidebar-4.component.html This code snippet demonstrates the UI structure when the 'tailwind' theme is active. It includes user profile information and data binding for fields. ```html @if (currentTheme === 'tailwind') {  John Wick [johnwick@company.com](mailto:johnwick@company.com) {{data.field}} * * * Collection {{data.field}} } ``` -------------------------------- ### Angular Theming Example (Bootstrap 5.3) Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/sidebar/sidebar-13/sidebar-13.component.html This snippet demonstrates how to conditionally render content based on the 'bootstrap5.3' theme in an Angular application. It includes image assets, user information, and status messages, similar to the tailwind example. ```html @else if (currentTheme === 'bootstrap5.3') {   John Wick [johnwick@company.com](mailto:johnwick@company.com) * * * Effortlessly resolve 70% of customer inquiries with our all-in-one platform. Online customer service tool used to operations. Managing and tracking client support. * * * Completed Effortlessly resolve 70% of customer inquiries with our all-in-one platform. Adaptive Tiles Meeting There was a problem with your network connection. } ``` -------------------------------- ### Bootstrap 5.3 Theme Example Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/signin-otp/signin-otp-3/signin-otp-3.component.html This snippet shows the content rendered when the 'bootstrap5.3' theme is active. It mirrors the structure of the Tailwind theme, offering similar UI elements and messaging. ```html } @else if (currentTheme === 'bootstrap5.3') { Welcome to our design system ============================ The Bootstrap Design System helps developers build organized and well-coded dashboards full of beautiful and rich modules. Join us and start building your application today. * 70+ components * Light and dark themes supported * 100% automatic layouts * 200+ reusable blocks to build templates easily  Company Name ------------ Enter OTP --------- We have sent an OTP to your mobile number Not yet received? [Resend OTP](javascript:void(0);) } ``` -------------------------------- ### Angular Conditional Theming Example Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/grid/grid-3/grid-3.component.html This snippet demonstrates how to use Angular's conditional rendering (`@if` and `@else if`) to apply different UI structures or styles based on a theme variable. It displays invoice data, customer details, and payment information, with specific formatting for Tailwind and Bootstrap 5.3 themes. ```html @if (currentTheme === 'tailwind') { [{{data.invoiceId}}](javascript:void(0); {{data.customerDetails.name}} {{data.customerDetails.email}} {{data.discount | currency:'USD':'symbol':'1.2-2'}} PaidPending No records found. {{data.paymentDate | date:'MM/dd/yyyy'}} - {{data.paymentMethod}} - } @else if (currentTheme === 'bootstrap5.3') { [{{data.invoiceId}}](javascript:void(0); {{data.customerDetails.name}} {{data.customerDetails.email}} {{data.discount | currency:'USD':'symbol':'1.2-2'}} PaidPending No records found. {{data.paymentDate | date:'MM/dd/yyyy'}} - {{data.paymentMethod}} - } ``` -------------------------------- ### Bootstrap 5.3 Theme Example Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/ai-card/ai-card-3/ai-card-3.component.html This snippet illustrates the content structure when the 'bootstrap5.3' theme is active. It mirrors the content of the Tailwind theme, showcasing the same sections for project management, time tracking, resource planning, and invoicing. ```html } @else if (currentTheme === 'bootstrap5.3') { Project management Create tasks, track time, and update progress all in one place. Time tracking Discover how much time your team is spending on their work. Resource planning Monitor how your resources are utilized across projects. Invoicing Invoice based on reported time for accurate billing. } ``` -------------------------------- ### Bootstrap 5.3 Theme Example Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/sidebar/sidebar-4/sidebar-4.component.html This code snippet illustrates the UI layout when the 'bootstrap5.3' theme is applied. It mirrors the structure of the Tailwind theme, displaying user details and dynamic data. ```html } @else if (currentTheme === 'bootstrap5.3') {  John Wick [johnwick@company.com](mailto:johnwick@company.com) {{data.field}} * * * Collection {{data.field}} } ``` -------------------------------- ### Bootstrap 5.3 Theme Example Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/signup/signup-2/signup-2.component.html This snippet illustrates the UI structure and content when the 'bootstrap5.3' theme is applied. It features a company logo, sign-up form with headings, input fields, agreement checkboxes, a sign-up button, and social login options. ```html @else if (currentTheme === 'bootstrap5.3') {  ##### Company Name #### Sign up Enter your information to sign up Name Email Password I agree with [terms](javascript:void(0);) and [privacy policy](javascript:void(0);) Sign up Or sign up with * * *   Already have an account? [Sign in](javascript:void(0);) } ``` -------------------------------- ### Tailwind CSS Theme Example Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/signup/signup-2/signup-2.component.html This snippet demonstrates the UI structure and content when the 'tailwind' theme is applied. It includes a company logo, sign-up form fields (Name, Email, Password), links to terms and privacy policy, and social sign-in options. ```html @if (currentTheme === 'tailwind') {  Company Name ------------ Sign up ------- Enter your information to sign up Name Email Password I agree with [terms](javascript:void(0);) and [privacy policy](javascript:void(0);) Or sign up with * * *   Already have an account? [Sign in](javascript:void(0);) } ``` -------------------------------- ### Conditional Theming in Angular Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/rating/rating-3/rating-3.component.html This snippet demonstrates how to conditionally render UI elements based on a theme variable using Angular's template syntax. It includes examples for 'tailwind' and 'bootstrap5.3' themes, showing different content structures for each. ```html @if (currentTheme === 'tailwind') {  Frank Moore Joined on October 2001 Highly efficient and user-friendly! Reviewed on Jul 1, 2024 This SaaS platform has completely streamlined our workflow. The setup was quick, and the interface is incredibly user-friendly. Within hours, we had everything integrated, and automation was running smoothly across our team. Would highly recommend it for small to mid-sized teams looking for a scalable solution! [Read more](javascript:void(0);) 19 people found this helpful } @else if (currentTheme === 'bootstrap5.3') {  Frank Moore Joined on October 2001 Highly efficient and user-friendly! Reviewed on Jul 1, 2024 This SaaS platform has completely streamlined our workflow. The setup was quick, and the interface is incredibly user-friendly. Within hours, we had everything integrated, and automation was running smoothly across our team. Would highly recommend it for small to mid-sized teams looking for a scalable solution! [Read more](javascript:void(0);) 19 people found this helpful } ``` -------------------------------- ### Tailwind CSS Theming Example Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/sidebar/sidebar-2/sidebar-2.component.html This snippet demonstrates the structure and content displayed when the application's theme is set to 'tailwind'. It includes placeholders for company information, data fields, and navigation links. ```html @if (currentTheme === 'tailwind') {  Company Name {{data.field}} 99+ * * * News Events People Groups Resources * Cards * Widgets * Components Office Adaptive Tiles Meeting There was a problem with your network connection } ``` -------------------------------- ### Tailwind Theme Example Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/footer/footer-4/footer-4.component.html This code snippet demonstrates the structure and content of the UI kit when the 'tailwind' theme is applied. It includes company branding, descriptive text, navigation links categorized by product, features, solutions, resources, and company information, along with contact details. ```html
Our fashion portal offers styles that make you look good and feel great.
© 2024 Company Name. All rights reserved.
1 E 2nd St, New York, NY 10003, USA
} ``` -------------------------------- ### Angular Theming Example (Tailwind) Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/sidebar/sidebar-13/sidebar-13.component.html This snippet demonstrates how to conditionally render content based on the 'tailwind' theme in an Angular application. It includes image assets, user information, and status messages. ```html @if (currentTheme === 'tailwind') {   John Wick [johnwick@company.com](mailto:johnwick@company.com) Effortlessly resolve 70% of customer inquiries with our all-in-one platform. Online customer service tool used to operations. Managing and tracking client support. * * * Completed Effortlessly resolve 70% of customer inquiries with our all-in-one platform. Adaptive Tiles Meeting There was a problem with your network connection } ``` -------------------------------- ### Adaptive UI Component Example (Tailwind Theme) Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/sidebar/sidebar-5/sidebar-5.component.html This snippet demonstrates the structure of an adaptive UI component when the 'tailwind' theme is active. It includes placeholders for company information, dynamic data fields, notification counts, and event details, along with error messages. ```html @if (currentTheme === 'tailwind') {  Company Name {{data.field}} 99+ * * * News Events People Adaptive Tiles Meeting There was a problem with your network connection Adaptive Tiles Meeting There was a problem with your network connection } ``` -------------------------------- ### Conditional Theming Example Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/cards/cards-6/cards-6.component.html Demonstrates how to conditionally render content based on the current theme ('tailwind' or 'bootstrap5.3') using Angular's template syntax. This allows for theme-specific UI elements and text. ```htmlStunning locations for your next adventure.
Deliver personalised experiences at scale.
Stunning locations for your next adventure
Deliver personalised experiences at scale.
Our fashion portal offers styles that make you look good and feel great.
© 2024 Company Name. All rights reserved.
1 E 2nd St, New York, NY 10003, USA
} ``` -------------------------------- ### Conditional Theming Example (Bootstrap 5.3) Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/ai-floating-widget/ai-floating-widget-1/ai-floating-widget-1.component.html This snippet demonstrates how to conditionally render content based on the 'currentTheme' variable, specifically for the 'bootstrap5.3' theme. It displays a chat interface title and description. ```html @else if (currentTheme === 'bootstrap5.3') { Chat with our AI ---------------- Ask any question and our AI will answer Powered by Remall } ``` -------------------------------- ### Job Listing - Tailwind Theme Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/tile-view/tile-view-5/tile-view-5.component.html Displays job listing details when the 'tailwind' theme is active. It includes company information, job title, salary, location, and applicant count. ```html @if (currentTheme === 'tailwind') { 250 jobs found Remote Only  {{data.title}} {{data.company}} {{data.reviews}} reviews {{data.experience}} {{data.salary}} {{data.location}} Posted: {{data.posted}} Openings: 1 Applicants: {{data.applicants}} } ``` -------------------------------- ### Conditional Rendering by Theme (Angular) Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/ai-chat/ai-chat-2/ai-chat-2.component.html Demonstrates how to conditionally render UI elements based on the current theme using Angular's template syntax. It shows examples for 'tailwind' and 'bootstrap5.3' themes, including placeholders for dynamic data and image assets. ```html @if (currentTheme === 'tailwind') { {{data.name}} {{data.time}} {{data.text}} AI chat 15m  {{resource.description}} } @else if (currentTheme === 'bootstrap5.3') { {{data.name}} {{data.time}} {{data.text}} AI chat 15m  {{ resource.description }} } ``` -------------------------------- ### Conditional Theming in Angular Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/returns/returns-5/returns-5.component.html Demonstrates how to conditionally render content based on a theme variable in an Angular template. This example shows different messages for 'tailwind' and 'bootstrap5.3' themes. ```html @if (currentTheme === 'tailwind') { Product Return Request Your request has been successfully registered. We have successfully received your return request. As we process it, you can monitor the status of your order. } @else if (currentTheme === 'bootstrap5.3') { Product Return Request Your request has been successfully registered. We have successfully received your return request. As we process it, you can monitor the status of your order. } ``` -------------------------------- ### Image Upload Component (Tailwind Theme) Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/ai-dialog/ai-dialog-1/ai-dialog-1.component.html This snippet displays the image upload interface when the 'tailwind' theme is active. It includes a reference for uploading an image, drag-and-drop functionality, a file chooser link, and specifies allowed image formats and maximum file size. A text area for AI descriptions is also present. ```html @if (currentTheme === 'tailwind') { Upload image reference Drag & drop or [choose file](javascript:void(0);) to upload. Image format: JPG, PNG, & SVG, Max 5.0MB Describe to AI } ``` -------------------------------- ### Tailwind Theme Pricing and Features Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/plan-comparison/plan-comparison-2/plan-comparison-2.component.html This snippet displays pricing plans (Single, Premium, Business) and features for the Essential UI Kit for Angular when the 'tailwind' theme is active. It includes one-time payment details and feature breakdowns like storage and security. ```html @if (currentTheme === 'tailwind') { Compare Plans Single $69$199 ------- No monthly subscription, you only pay once. Premium $149$599 -------- No monthly subscription, you only pay once. Business $249$699 -------- No monthly subscription, you only pay once. Features -------- Only 1 User 10 Projects Agents Count 24 32 100 Unlimited Bandwidth Unlimited Data Storage & Security ------------------ 5 GB Storage Fully Security Suite } ``` -------------------------------- ### Conditional Theming in Angular Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/cards/cards-15/cards-15.component.html Demonstrates how to conditionally render content based on the current theme in an Angular application. This example uses TypeScript and HTML to switch between 'tailwind' and 'bootstrap5.3' themes. ```typescript let currentTheme = 'tailwind'; // or 'bootstrap5.3' // ... rest of your Angular component logic ``` ```html @if (currentTheme === 'tailwind') { // Content for Tailwind themeEnhance your study sessions...
Whip up tasty meals...
Uncover the best-kept secrets...
} @else if (currentTheme === 'bootstrap5.3') { // Content for Bootstrap 5.3 themeEnhance your study sessions...
Whip up tasty meals...
Uncover the best-kept secrets...
} ``` -------------------------------- ### Conditional Theming Example (Tailwind) Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/ai-floating-widget/ai-floating-widget-1/ai-floating-widget-1.component.html This snippet demonstrates how to conditionally render content based on the 'currentTheme' variable, specifically for the 'tailwind' theme. It displays a chat interface title and description. ```html @if (currentTheme === 'tailwind') { Chat with our AI ---------------- Ask any question and our AI will answer Powered by Remall } ``` -------------------------------- ### Bootstrap 5.3 Theme Components Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/signup/signup-3/signup-3.component.html This snippet demonstrates the structure and content for the Bootstrap 5.3 theme within the Angular UI Kit. It features a similar layout to the Tailwind theme, including welcome messages, feature lists, and a sign-up form. ```html } @else if (currentTheme === 'bootstrap5.3') { Welcome to our design system ============================ The Bootstrap Design System helps developers build organized and well-coded dashboards full of beautiful and rich modules. Join us and start building your application today. * 70+ components * Light and dark themes supported * 100% automatic layouts * 200+ reusable blocks to build templates easily  ##### Company Name #### Sign up Enter your information to sign up Name Email Password I agree with [terms](javascript:void(0);) and [privacy policy](javascript:void(0);) Or sign up with * * *   Already have an account? [Sign in](javascript:void(0);) } ``` -------------------------------- ### Conditional Rendering by Theme in Angular Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/notification/notification-8/notification-8.component.html Demonstrates how to conditionally render content in an Angular template based on the current theme. This example shows different messages displayed for 'tailwind' and 'bootstrap5.3' themes. ```html @if (currentTheme === 'tailwind') { Message sent } @else if (currentTheme === 'bootstrap5.3') { Message sent } ``` -------------------------------- ### Angular Pricing Plans (Bootstrap 5.3 Theme) Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/pricing-card/pricing-card-6/pricing-card-6.component.html This code snippet displays pricing plans for the Syncfusion Essential UI Kit for Angular when the 'bootstrap5.3' theme is active. It includes details for Single, Premium, and Business plans with monthly and yearly pricing, along with feature lists, using markdown for headings. ```html } @else if (currentTheme === 'bootstrap5.3') { Pricing Plans ============= Get started in complete confidence. Our 30-day money-back guarantee means it's risk-free. Monthly Yearly ##### Single A great solution for beginners $69 --- $199 per month $828 billed yearly Create one end product for a client, transfer that end product to your client, charge them for your services. * 1 Website * ~10000 visits monthly * 50 GB SSD storage * 200,000 files and directories * Free pre-built templates * Free domain ($79.00 value) * Free CDN Most popular ##### Premium All you need to create your website $149 ---- $599 per month $1,788 billed yearly Create one end product for a client, transfer that end product to your client, charge them for your services. * 1 Website * ~10000 visits monthly * 50 GB SSD storage * 200,000 files and directories * Free pre-built templates * Free domain ($79.00 value) * Free CDN ##### Business Level up with more powerful features $249 ---- $699 per month $2,988 billed yearly Create one end product for a client, transfer that end product to your client, charge them for your services. * 1 Website * ~10000 visits monthly * 50 GB SSD storage * 200,000 files and directories * Free pre-built templates * Free domain ($79.00 value) * Free CDN } ``` -------------------------------- ### Conditional Rendering for Bootstrap 5.3 Theme Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/chat/chat-1/chat-1.component.html This snippet illustrates conditional rendering for the 'bootstrap5.3' theme in Angular. Similar to the Tailwind example, it displays user-related data, adapting to the specified theme. ```html @else if (currentTheme === 'bootstrap5.3') { Mark Davis Wednesday, Sep 18th {{data.text}} {{data.time}} {{data.text}} {{data.name}} {{data.time}} } ``` -------------------------------- ### Google Analytics and Optimize Integration (Bootstrap 5.3 Theme) Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/ai-floating-widget/ai-floating-widget-3/ai-floating-widget-3.component.html This snippet details the integration steps for Google Analytics and Google Optimize when the theme is set to 'bootstrap5.3'. It includes instructions for obtaining the Measurement ID and Container ID, as well as uploading a private key. ```html } @else if (currentTheme === 'bootstrap5.3') { Integration settings Google analytics Create a property in your [Google analytics account](javascript:void(0);). You can find your measurement ID [here](javascript:void(0);). Measurement ID*Verified Google optimize Create a new container in your [Google optimize](javascript:void(0);) account then paste the container ID [here](javascript:void(0);). Container ID Start running A/B, multivariate, and more tests on your pages with Google optimize. You'll need to have Google analytics enabled. Private key (JSON) Create a private key under service accounts in Google Cloud console and upload. [Click to upload](javascript:void(0);) or drag and drop OR } ``` -------------------------------- ### Pricing Plans - Tailwind Theme Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/pricing-card/pricing-card-1/pricing-card-1.component.html Displays pricing plans for the Essential UI Kit for Angular when the 'tailwind' theme is active. Includes options for monthly, yearly, and lifetime memberships with descriptions and pricing details. ```html @if (currentTheme === 'tailwind') { Pricing Plans ============= Get started in complete confidence. Our 30-day money-back guarantee means it's risk-free. Monthly Yearly Lifetime Membership ------------------- A great solution for beginners Create one end product for a client, transfer that end product to your client, charge them for your services. $149 $599 per month $1,788 billed yearly No monthly subscription, you only pay once. } ``` -------------------------------- ### Tailwind Theme Implementation Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/footer/footer-5/footer-5.component.html This code snippet demonstrates the structure and content of the UI kit when the 'tailwind' theme is applied. It includes company branding, descriptive text, navigation links, contact information, and social media placeholders. ```html @if (currentTheme === 'tailwind') {  Company Name ------------ Our fashion portal offers styles that make you look good and feel great. ### Home * [About](javascript:void(0);) * [Careers](javascript:void(0);) * [Blogs](javascript:void(0);) ### Solutions * [Online store builder](javascript:void(0);) * [Website builder](javascript:void(0);) * [E-commerce website](javascript:void(0);) ### Support * [Help center](javascript:void(0);) * [Hire a partner](javascript:void(0);) * [ShopNezt community](javascript:void(0);) ### Resources * [What's new](javascript:void(0);) * [Resource library](javascript:void(0);) * [Events](javascript:void(0);) ### Company * [ShopNezt](javascript:void(0);) * [FoodNezt](javascript:void(0);) * [TravelNezt](javascript:void(0);) ### Get in Touch * 1 E 2nd St, New York, NY 10003, USA * [contact@company.com](javascript:void(0);) * [(123) 456-7890](javascript:void(0);)  © 2024 Company Name. All rights reserved. [](javascript:void(0);) [](javascript:void(0);) [](javascript:void(0);) } ``` -------------------------------- ### Conditional Rendering based on Theme Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/rating/rating-13/rating-13.component.html Demonstrates how to conditionally render content in an Angular template based on the value of the 'currentTheme' variable. This example shows different rating options displayed for 'tailwind' and 'bootstrap5.3' themes. ```html @if (currentTheme === 'tailwind') { #### How would you like to rate our app experience? Unhappy Neutral Satisfied } @else if (currentTheme === 'bootstrap5.3') { #### How would you like to rate our app experience? Unhappy Neutral Satisfied } ``` -------------------------------- ### Conditional Rendering by Theme in Angular Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/footer/footer-2/footer-2.component.html Demonstrates how to conditionally render content in an Angular template based on the 'currentTheme' variable. This example shows different copyright notices and placeholder links for 'tailwind' and 'bootstrap5.3' themes. ```html @if (currentTheme === 'tailwind') { © 2024 Company Name. All rights reserved. [](javascript:void(0);)[](javascript:void(0);)[](javascript:void(0);) } @else if (currentTheme === 'bootstrap5.3') { © 2024 Company Name. All rights reserved. [](javascript:void(0);)[](javascript:void(0);)[](javascript:void(0);) } ``` -------------------------------- ### Pricing Plans (Bootstrap 5.3 Theme) Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/pricing-card/pricing-card-3/pricing-card-3.component.html Displays pricing plans for the Syncfusion Essential UI Kit for Angular when the 'bootstrap5.3' theme is active. It includes details for 'Single' and 'Premium' plans with monthly and yearly pricing, and usage descriptions. ```html @else if (currentTheme === 'bootstrap5.3') { Pricing Plans ============= Get started in complete confidence. Our 30-day money-back guarantee means it's risk-free. Monthly Yearly ##### Single A great solution for beginners $69 --- $199 per month $828 billed yearly Create one end product for a client, transfer that end product to your client, charge them for your services. Most popular ##### Premium All you need to create your website $149 ---- $599 per month $1,788 billed yearly Create one end product for a client, transfer that end product to your client, charge them for your services. } ``` -------------------------------- ### Tailwind Theme Components Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/signup/signup-3/signup-3.component.html This snippet showcases the structure and content for the Tailwind theme within the Angular UI Kit. It includes welcome messages, feature lists, and a sign-up form with social login options. ```html @if (currentTheme === 'tailwind') { Welcome to our design system ============================ The Tailwind Design System helps developers build organized and well-coded dashboards full of beautiful and rich modules. Join us and start building your application today. * 70+ components * Light and dark themes supported * 100% automatic layouts * 200+ reusable blocks to build templates easily  Company Name ------------ Sign up ------- Enter your information to sign up Name Email Password I agree with [terms](javascript:void(0);) and [privacy policy](javascript:void(0);) Or sign up with * * *   Already have an account? [Sign in](javascript:void(0);) } ``` -------------------------------- ### Conditional Weather History Display (Tailwind) Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/bar-chart/bar-chart-3/bar-chart-3.component.html This snippet displays weather history details when the 'tailwind' theme is active. It includes location, date, temperature, rainfall, and snow data. ```html @if (currentTheme === 'tailwind') { Weather History =============== Location: Charlotte, North Carolina December December 13 / 1 ====== °C | F D W M Y Custom Record temps: 26° / -13°C Avg rainfall: 9.9 cm Snow: 2 days } ``` -------------------------------- ### Adaptive UI Component Example (Bootstrap 5.3 Theme) Source: https://github.com/syncfusion/essential-ui-kit-for-angular/blob/master/ui-blocks/src/blocks-section/sidebar/sidebar-5/sidebar-5.component.html This snippet illustrates the structure of an adaptive UI component when the 'bootstrap5.3' theme is active. It mirrors the Tailwind theme's structure, displaying company details, dynamic data, notifications, and event information, including network error messages. ```html @else if (currentTheme === 'bootstrap5.3') {  Company Name {{data.field}} 99+ * * * News Events People Adaptive Tiles Meeting There was a problem with your network connection. Adaptive Tiles Meeting There was a problem with your network connection. } ```