diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx index 85aa337..6f6c8d2 100644 --- a/src/app/admin/page.tsx +++ b/src/app/admin/page.tsx @@ -59,7 +59,7 @@ export default function AdminPage() { borderRadius="rounded" contentWidth="compact" sizing="mediumSizeLargeTitles" - background="aurora" + background="circleGradient" cardStyle="layered-gradient" primaryButtonStyle="primary-glow" secondaryButtonStyle="layered" @@ -70,9 +70,7 @@ export default function AdminPage() { brandName="EduFlow" navItems={navItems} button={{ - text: "Get Started", - href: "#contact", - }} + text: "Get Started", href: "#contact"}} animateOnLoad={true} /> @@ -81,24 +79,15 @@ export default function AdminPage() { @@ -86,52 +84,32 @@ export default function HomePage() { tag="Liquid Glass Design" tagIcon={Sparkles} tagAnimation="slide-up" - background={{ variant: "aurora" }} + background={{ variant: "plain" }} leftCarouselItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/city-committed-education-collage-concept_23-2150062208.jpg?_wi=1", - imageAlt: "Main dashboard interface", - }, + imageSrc: "http://img.b2bpic.net/free-photo/city-committed-education-collage-concept_23-2150062208.jpg", imageAlt: "Main dashboard interface"}, { - imageSrc: "http://img.b2bpic.net/free-vector/dashboard-business-user-panel_23-2148359900.jpg?_wi=1", - imageAlt: "Admin panel overview", - }, + imageSrc: "http://img.b2bpic.net/free-vector/dashboard-business-user-panel_23-2148359900.jpg", imageAlt: "Admin panel overview"}, { - imageSrc: "http://img.b2bpic.net/free-vector/flat-web-design-elements-green-color_23-2147542335.jpg?_wi=1", - imageAlt: "Teacher portal interface", - }, + imageSrc: "http://img.b2bpic.net/free-vector/flat-web-design-elements-green-color_23-2147542335.jpg", imageAlt: "Teacher portal interface"}, { - imageSrc: "http://img.b2bpic.net/free-vector/online-education-flat-background_23-2148136767.jpg?_wi=1", - imageAlt: "Student dashboard", - }, + imageSrc: "http://img.b2bpic.net/free-vector/online-education-flat-background_23-2148136767.jpg", imageAlt: "Student dashboard"}, ]} rightCarouselItems={[ { - imageSrc: "http://img.b2bpic.net/free-vector/online-education-flat-background_23-2148136767.jpg?_wi=2", - imageAlt: "Student learning interface", - }, + imageSrc: "http://img.b2bpic.net/free-vector/online-education-flat-background_23-2148136767.jpg", imageAlt: "Student learning interface"}, { - imageSrc: "http://img.b2bpic.net/free-vector/flat-web-design-elements-green-color_23-2147542335.jpg?_wi=2", - imageAlt: "Teaching tools", - }, + imageSrc: "http://img.b2bpic.net/free-vector/flat-web-design-elements-green-color_23-2147542335.jpg", imageAlt: "Teaching tools"}, { - imageSrc: "http://img.b2bpic.net/free-vector/dashboard-business-user-panel_23-2148359900.jpg?_wi=2", - imageAlt: "Administration controls", - }, + imageSrc: "http://img.b2bpic.net/free-vector/dashboard-business-user-panel_23-2148359900.jpg", imageAlt: "Administration controls"}, { - imageSrc: "http://img.b2bpic.net/free-photo/city-committed-education-collage-concept_23-2150062208.jpg?_wi=2", - imageAlt: "Analytics and reports", - }, + imageSrc: "http://img.b2bpic.net/free-photo/city-committed-education-collage-concept_23-2150062208.jpg", imageAlt: "Analytics and reports"}, ]} buttons={[ { - text: "Launch Admin Panel", - href: "/admin", - }, + text: "Launch Admin Panel", href: "/admin"}, { - text: "Explore Features", - href: "#features", - }, + text: "Explore Features", href: "#features"}, ]} buttonAnimation="slide-up" carouselPosition="right" @@ -142,24 +120,15 @@ export default function HomePage() { @@ -81,24 +79,15 @@ export default function StudentPage() { @@ -81,24 +79,15 @@ export default function TeacherPage() { (function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ + text, + className = '', + textClassName = '', + animationDuration = 3, +}) => { return ( - {logoText} + {text} + ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file