Merge version_8 into main #9

Merged
mulika-local merged 3 commits from version_8 into main 2025-12-27 16:10:41 +00:00
3 changed files with 25 additions and 34 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #1a1a1a;
--card: #2d2d2d;
--foreground: #ffffff;
--primary-cta: #ff0000;
--secondary-cta: #000000;
--accent: #ff3333;
--background-accent: #333333;
--background: #fafffb;
--card: #f7fffa;
--foreground: #001a0a;
--primary-cta: #0a7039;
--secondary-cta: #ffffff;
--accent: #a8d9be;
--background-accent: #6bbf8e;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1265,4 +1265,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -12,8 +12,7 @@ import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
import FaqBase from '@/components/sections/faq/FaqBase';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBaseSocial from '@/components/sections/footer/FooterBaseSocial';
import TextNumberCount from '@/components/text/TextNumberCount';
import { Zap, Target, Sparkles, Rocket, Award, Users, HelpCircle, Youtube, Linkedin, Twitter, Github } from "lucide-react";
import { Zap, Target, Sparkles, Rocket, Award, Users, HelpCircle, Youtube, Linkedin, Twitter, Github, Star } from "lucide-react";
export default function Page() {
return (
@@ -391,29 +390,21 @@ export default function Page() {
</div>
<div id="contact" data-section="contact">
<div className="flex flex-col items-center justify-center gap-6 py-20">
<div className="text-center">
<h2 className="text-4xl font-bold mb-4">Our Users</h2>
<div className="flex items-baseline justify-center gap-2">
<TextNumberCount value={1000} suffix="+ people" className="text-6xl font-extrabold" />
</div>
</div>
<ContactText
text="Ready to transform your career in technology? Get in touch with our enrollment team to discuss your learning goals and find the perfect course for you."
animationType="reveal-blur"
buttons={[
{
text: "Contact Us",
href: "contact"
},
{
text: "Schedule a Call",
href: "contact"
}
]}
useInvertedBackground="noInvert"
/>
</div>
<ContactText
text="Ready to transform your career in technology? Get in touch with our enrollment team to discuss your learning goals and find the perfect course for you."
animationType="reveal-blur"
buttons={[
{
text: "Contact Us",
href: "contact"
},
{
text: "Schedule a Call",
href: "contact"
}
]}
useInvertedBackground="noInvert"
/>
</div>
<div id="footer" data-section="footer">
@@ -504,4 +495,4 @@ export default function Page() {
</div>
</ThemeProvider>
);
}
}