This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* eslint-disable @typescript-eslint/no-explicit-any */ | |
| const CostCalculatorEntryPointModal = () => { | |
| return ( | |
| <div | |
| className={`fixed inset-0 flex items-center justify-center pointer-events-auto z-50 w-screen h-screen bg-[#313e4c]`} | |
| > | |
| <div className={`p-2 bg-[#8b8b93] w-3/4 rounded-lg`}> | |
| <ContentCalculatorIntro | |
| title={`Cost Calculator`} | |
| logo={`https://cdn-icons-png.flaticon.com/512/1021/1021950.png`} | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <template> | |
| <div class="min-h-screen bg-gray-50 lg:pl-64"> | |
| <Sidebar /> | |
| <Navbar /> | |
| <!-- Main Content --> | |
| <main | |
| class="max-w-7xl mx-auto px-4 py-6 sm:px-6 lg:px-8 flex flex-col gap-6" | |
| :v-if="!loading" | |
| > | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <template> | |
| <div class="min-h-screen flex"> | |
| <!-- Left side - Auth form --> | |
| <div class="w-full lg:w-1/2 p-8 flex items-center justify-center"> | |
| <div class="w-full max-w-md"> | |
| <!-- Logo --> | |
| <div> | |
| <div class="mb-8 text-primary text-6xl font-extrabold gap-4">SEEDR | |
| </div> | |
| </div> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // constants are assigned to magic numbers | |
| // dependency injection | |
| function calculateCircleCircumference = (radius) => { | |
| // return 2 pie r | |
| // return 2 * 3.142 * radius | |
| const pie = 3.142 | |
| return 2 * pie * radius | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import { Spin } from "antd"; | |
| import { Link } from "react-router-dom"; | |
| const CustomButton = ({ | |
| label, | |
| onClick, | |
| loading, | |
| className, | |
| type, | |
| children, | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | function maximumNumberAfterSwap(number) { | |
| const numberString = number.toString().split(''); | |
| let maxNumArray = [...numberString]; // Clone the original array | |
| for (let i = 0; i < numberString.length; i++) { | |
| for (let j = i + 1; j < numberString.length; j++) { | |
| // Swap two digits | |
| [numberString[i], numberString[j]] = [numberString[j], numberString[i]]; | |
| // Compare and update if the swapped number is greater | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | //functions | |
| void main() { | |
| int answer = quadAnswer(6,1098432484848,109843248484848); | |
| int age = getAge(2022, 1960); | |
| String firstName = 'faith'; | |
| String lastName = 'morebise'; | |
| String fullName = firstName + ' ' + lastName; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <html> | |
| <head> | |
| <title> | |
| </title> | |
| </head> | |
| <body> | |
| <div class="rect1" id="firstrect"> | |
| <div class="rect2" id="rect2"> | |
| <div class="rect3" id="rect3"> |