Update src/app/library/page.tsx

This commit is contained in:
2026-03-04 04:29:33 +00:00
parent d28dc3a958
commit f21e1fb6d5

View File

@@ -19,16 +19,16 @@ export default function LibraryPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultButtonVariant="text-shift"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
borderRadius="rounded"
contentWidth="medium"
sizing="mediumSizeLargeTitles"
background="aurora"
cardStyle="gradient-mesh"
primaryButtonStyle="diagonal-gradient"
sizing="medium"
background="none"
cardStyle="solid"
primaryButtonStyle="flat"
secondaryButtonStyle="solid"
headingFontWeight="medium"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
@@ -44,17 +44,17 @@ export default function LibraryPage() {
title="Explore Our Content Library"
description="Access comprehensive, expert-curated resources organized by year group, subject, and term. From Specialist to Physics, find everything you need for academic success."
tag="Learning Resources"
tagAnimation="slide-up"
tagAnimation="none"
imageSrc="http://img.b2bpic.net/free-photo/wireless-technology-could-be-very-useful_329181-14220.jpg?_wi=2"
imageAlt="Content library interface"
textPosition="center"
showBlur={true}
showDimOverlay={true}
showBlur={false}
showDimOverlay={false}
buttons={[
{ text: "Browse Subjects", href: "/library" },
{ text: "Request Access", href: "/contact" },
]}
buttonAnimation="slide-up"
buttonAnimation="none"
/>
</div>
@@ -63,34 +63,28 @@ export default function LibraryPage() {
title="Comprehensive Resource Organization"
description="Our content library is carefully structured to support every learning style and academic level. From foundational concepts to advanced topics, discover resources tailored to your educational journey."
tag="How Our Library Works"
tagAnimation="slide-up"
tagAnimation="none"
textboxLayout="default"
useInvertedBackground={false}
bulletPoints={[
{
title: "By Year Group",
description: "Dedicated content pathways for Year 9, 10, 11, and 12 students with age-appropriate complexity",
icon: BookOpen,
title: "By Year Group", description: "Dedicated content pathways for Year 9, 10, 11, and 12 students with age-appropriate complexity", icon: BookOpen,
},
{
title: "By Subject",
description: "Expert resources for Specialist, Methods, Chemistry, and Physics with depth and breadth",
icon: Filter,
title: "By Subject", description: "Expert resources for Specialist, Methods, Chemistry, and Physics with depth and breadth", icon: Filter,
},
{
title: "By Term Structure",
description: "Organized across academic terms with progressive learning objectives and assessments",
icon: Layers,
title: "By Term Structure", description: "Organized across academic terms with progressive learning objectives and assessments", icon: Layers,
},
]}
imageSrc="http://img.b2bpic.net/free-vector/organization-chart_52683-8995.jpg?_wi=2"
imageAlt="Content organization system"
mediaAnimation="slide-up"
mediaAnimation="none"
imagePosition="right"
buttons={[
{ text: "View All Resources", href: "/library" },
]}
buttonAnimation="slide-up"
buttonAnimation="none"
/>
</div>
@@ -99,42 +93,24 @@ export default function LibraryPage() {
title="Resource Management Tools"
description="Advanced features to help educators and administrators maximize the content library"
tag="Admin Features"
tagAnimation="slide-up"
tagAnimation="none"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
id: 1,
tag: "Content Upload",
title: "Add Your Own Materials",
subtitle: "Seamless integration with existing resources",
description:
"Upload custom worksheets, videos, and assessments directly to your subjects. Organize them by term and control access levels with flexible paywall settings.",
imageSrc: "http://img.b2bpic.net/free-photo/laboratory-glassware-with-liquids-different-color_1150-19441.jpg?_wi=2",
imageAlt: "Content upload interface",
},
tag: "Content Upload", title: "Add Your Own Materials", subtitle: "Seamless integration with existing resources", description:
"Upload custom worksheets, videos, and assessments directly to your subjects. Organize them by term and control access levels with flexible paywall settings.", imageSrc: "http://img.b2bpic.net/free-photo/laboratory-glassware-with-liquids-different-color_1150-19441.jpg?_wi=2", imageAlt: "Content upload interface"},
{
id: 2,
tag: "Search & Filter",
title: "Find Resources Instantly",
subtitle: "Powerful discovery tools",
description:
"Use advanced filters by year, subject, term, and resource type. Save favorite resources and create custom collections for quick access during lessons.",
imageSrc: "http://img.b2bpic.net/free-vector/user-panel-dashboard_23-2148365531.jpg?_wi=2",
imageAlt: "Search interface",
},
tag: "Search & Filter", title: "Find Resources Instantly", subtitle: "Powerful discovery tools", description:
"Use advanced filters by year, subject, term, and resource type. Save favorite resources and create custom collections for quick access during lessons.", imageSrc: "http://img.b2bpic.net/free-vector/user-panel-dashboard_23-2148365531.jpg?_wi=2", imageAlt: "Search interface"},
{
id: 3,
tag: "Analytics",
title: "Track Resource Usage",
subtitle: "Understand student engagement",
description:
"See which resources students engage with most. Identify gaps in understanding and optimize your content strategy based on real usage patterns.",
imageSrc: "http://img.b2bpic.net/free-photo/calendar-planner-agenda-schedule-concept_53876-176748.jpg?_wi=2",
imageAlt: "Analytics dashboard",
},
tag: "Analytics", title: "Track Resource Usage", subtitle: "Understand student engagement", description:
"See which resources students engage with most. Identify gaps in understanding and optimize your content strategy based on real usage patterns.", imageSrc: "http://img.b2bpic.net/free-photo/calendar-planner-agenda-schedule-concept_53876-176748.jpg?_wi=2", imageAlt: "Analytics dashboard"},
]}
buttonAnimation="slide-up"
buttonAnimation="none"
/>
</div>
@@ -145,22 +121,16 @@ export default function LibraryPage() {
socialLinks={[
{
icon: Twitter,
href: "https://twitter.com/wacey",
ariaLabel: "Follow us on Twitter",
},
href: "https://twitter.com/wacey", ariaLabel: "Follow us on Twitter"},
{
icon: Linkedin,
href: "https://linkedin.com/company/wacey",
ariaLabel: "Connect on LinkedIn",
},
href: "https://linkedin.com/company/wacey", ariaLabel: "Connect on LinkedIn"},
{
icon: Instagram,
href: "https://instagram.com/wacey",
ariaLabel: "Follow us on Instagram",
},
href: "https://instagram.com/wacey", ariaLabel: "Follow us on Instagram"},
]}
/>
</div>
</ThemeProvider>
);
}
}