Akademy Landing MPA
1
.astro/content-assets.mjs
Normal file
@@ -0,0 +1 @@
|
||||
export default new Map();
|
||||
1
.astro/content-modules.mjs
Normal file
@@ -0,0 +1 @@
|
||||
export default new Map();
|
||||
156
.astro/content.d.ts
vendored
Normal file
@@ -0,0 +1,156 @@
|
||||
declare module 'astro:content' {
|
||||
export interface RenderResult {
|
||||
Content: import('astro/runtime/server/index.js').AstroComponentFactory;
|
||||
headings: import('astro').MarkdownHeading[];
|
||||
remarkPluginFrontmatter: Record<string, any>;
|
||||
}
|
||||
interface Render {
|
||||
'.md': Promise<RenderResult>;
|
||||
}
|
||||
|
||||
export interface RenderedContent {
|
||||
html: string;
|
||||
metadata?: {
|
||||
imagePaths: Array<string>;
|
||||
[key: string]: unknown;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
declare module 'astro:content' {
|
||||
type Flatten<T> = T extends { [K: string]: infer U } ? U : never;
|
||||
|
||||
export type CollectionKey = keyof AnyEntryMap;
|
||||
export type CollectionEntry<C extends CollectionKey> = Flatten<AnyEntryMap[C]>;
|
||||
|
||||
export type ContentCollectionKey = keyof ContentEntryMap;
|
||||
export type DataCollectionKey = keyof DataEntryMap;
|
||||
|
||||
type AllValuesOf<T> = T extends any ? T[keyof T] : never;
|
||||
type ValidContentEntrySlug<C extends keyof ContentEntryMap> = AllValuesOf<
|
||||
ContentEntryMap[C]
|
||||
>['slug'];
|
||||
|
||||
export type ReferenceDataEntry<
|
||||
C extends CollectionKey,
|
||||
E extends keyof DataEntryMap[C] = string,
|
||||
> = {
|
||||
collection: C;
|
||||
id: E;
|
||||
};
|
||||
export type ReferenceContentEntry<
|
||||
C extends keyof ContentEntryMap,
|
||||
E extends ValidContentEntrySlug<C> | (string & {}) = string,
|
||||
> = {
|
||||
collection: C;
|
||||
slug: E;
|
||||
};
|
||||
|
||||
/** @deprecated Use `getEntry` instead. */
|
||||
export function getEntryBySlug<
|
||||
C extends keyof ContentEntryMap,
|
||||
E extends ValidContentEntrySlug<C> | (string & {}),
|
||||
>(
|
||||
collection: C,
|
||||
// Note that this has to accept a regular string too, for SSR
|
||||
entrySlug: E,
|
||||
): E extends ValidContentEntrySlug<C>
|
||||
? Promise<CollectionEntry<C>>
|
||||
: Promise<CollectionEntry<C> | undefined>;
|
||||
|
||||
/** @deprecated Use `getEntry` instead. */
|
||||
export function getDataEntryById<C extends keyof DataEntryMap, E extends keyof DataEntryMap[C]>(
|
||||
collection: C,
|
||||
entryId: E,
|
||||
): Promise<CollectionEntry<C>>;
|
||||
|
||||
export function getCollection<C extends keyof AnyEntryMap, E extends CollectionEntry<C>>(
|
||||
collection: C,
|
||||
filter?: (entry: CollectionEntry<C>) => entry is E,
|
||||
): Promise<E[]>;
|
||||
export function getCollection<C extends keyof AnyEntryMap>(
|
||||
collection: C,
|
||||
filter?: (entry: CollectionEntry<C>) => unknown,
|
||||
): Promise<CollectionEntry<C>[]>;
|
||||
|
||||
export function getEntry<
|
||||
C extends keyof ContentEntryMap,
|
||||
E extends ValidContentEntrySlug<C> | (string & {}),
|
||||
>(
|
||||
entry: ReferenceContentEntry<C, E>,
|
||||
): E extends ValidContentEntrySlug<C>
|
||||
? Promise<CollectionEntry<C>>
|
||||
: Promise<CollectionEntry<C> | undefined>;
|
||||
export function getEntry<
|
||||
C extends keyof DataEntryMap,
|
||||
E extends keyof DataEntryMap[C] | (string & {}),
|
||||
>(
|
||||
entry: ReferenceDataEntry<C, E>,
|
||||
): E extends keyof DataEntryMap[C]
|
||||
? Promise<DataEntryMap[C][E]>
|
||||
: Promise<CollectionEntry<C> | undefined>;
|
||||
export function getEntry<
|
||||
C extends keyof ContentEntryMap,
|
||||
E extends ValidContentEntrySlug<C> | (string & {}),
|
||||
>(
|
||||
collection: C,
|
||||
slug: E,
|
||||
): E extends ValidContentEntrySlug<C>
|
||||
? Promise<CollectionEntry<C>>
|
||||
: Promise<CollectionEntry<C> | undefined>;
|
||||
export function getEntry<
|
||||
C extends keyof DataEntryMap,
|
||||
E extends keyof DataEntryMap[C] | (string & {}),
|
||||
>(
|
||||
collection: C,
|
||||
id: E,
|
||||
): E extends keyof DataEntryMap[C]
|
||||
? string extends keyof DataEntryMap[C]
|
||||
? Promise<DataEntryMap[C][E]> | undefined
|
||||
: Promise<DataEntryMap[C][E]>
|
||||
: Promise<CollectionEntry<C> | undefined>;
|
||||
|
||||
/** Resolve an array of entry references from the same collection */
|
||||
export function getEntries<C extends keyof ContentEntryMap>(
|
||||
entries: ReferenceContentEntry<C, ValidContentEntrySlug<C>>[],
|
||||
): Promise<CollectionEntry<C>[]>;
|
||||
export function getEntries<C extends keyof DataEntryMap>(
|
||||
entries: ReferenceDataEntry<C, keyof DataEntryMap[C]>[],
|
||||
): Promise<CollectionEntry<C>[]>;
|
||||
|
||||
export function render<C extends keyof AnyEntryMap>(
|
||||
entry: AnyEntryMap[C][string],
|
||||
): Promise<RenderResult>;
|
||||
|
||||
export function reference<C extends keyof AnyEntryMap>(
|
||||
collection: C,
|
||||
): import('astro/zod').ZodEffects<
|
||||
import('astro/zod').ZodString,
|
||||
C extends keyof ContentEntryMap
|
||||
? ReferenceContentEntry<C, ValidContentEntrySlug<C>>
|
||||
: ReferenceDataEntry<C, keyof DataEntryMap[C]>
|
||||
>;
|
||||
// Allow generic `string` to avoid excessive type errors in the config
|
||||
// if `dev` is not running to update as you edit.
|
||||
// Invalid collection names will be caught at build time.
|
||||
export function reference<C extends string>(
|
||||
collection: C,
|
||||
): import('astro/zod').ZodEffects<import('astro/zod').ZodString, never>;
|
||||
|
||||
type ReturnTypeOrOriginal<T> = T extends (...args: any[]) => infer R ? R : T;
|
||||
type InferEntrySchema<C extends keyof AnyEntryMap> = import('astro/zod').infer<
|
||||
ReturnTypeOrOriginal<Required<ContentConfig['collections'][C]>['schema']>
|
||||
>;
|
||||
|
||||
type ContentEntryMap = {
|
||||
|
||||
};
|
||||
|
||||
type DataEntryMap = {
|
||||
|
||||
};
|
||||
|
||||
type AnyEntryMap = ContentEntryMap & DataEntryMap;
|
||||
|
||||
export type ContentConfig = typeof import("../src/content.config.mjs");
|
||||
}
|
||||
1
.astro/data-store.json
Normal file
@@ -0,0 +1 @@
|
||||
[["Map",1,2],"meta::meta",["Map",3,4,5,6],"astro-version","5.9.1","astro-config-digest","{\"root\":{},\"srcDir\":{},\"publicDir\":{},\"outDir\":{},\"cacheDir\":{},\"compressHTML\":true,\"base\":\"/\",\"trailingSlash\":\"ignore\",\"output\":\"static\",\"scopedStyleStrategy\":\"attribute\",\"build\":{\"format\":\"directory\",\"client\":{},\"server\":{},\"assets\":\"_astro\",\"serverEntry\":\"entry.mjs\",\"redirects\":true,\"inlineStylesheets\":\"auto\",\"concurrency\":1},\"server\":{\"open\":false,\"host\":true,\"port\":3000,\"streaming\":true,\"allowedHosts\":[]},\"redirects\":{},\"image\":{\"endpoint\":{\"route\":\"/_image\"},\"service\":{\"entrypoint\":\"astro/assets/services/sharp\",\"config\":{}},\"domains\":[],\"remotePatterns\":[],\"experimentalDefaultStyles\":true},\"devToolbar\":{\"enabled\":true},\"markdown\":{\"syntaxHighlight\":{\"type\":\"shiki\",\"excludeLangs\":[\"math\"]},\"shikiConfig\":{\"langs\":[],\"langAlias\":{},\"theme\":\"github-dark\",\"themes\":{},\"wrap\":false,\"transformers\":[]},\"remarkPlugins\":[],\"rehypePlugins\":[],\"remarkRehype\":{},\"gfm\":true,\"smartypants\":true},\"security\":{\"checkOrigin\":true},\"env\":{\"schema\":{},\"validateSecrets\":false},\"experimental\":{\"clientPrerender\":false,\"contentIntellisense\":false,\"responsiveImages\":false,\"headingIdCompat\":false,\"preserveScriptOrder\":false,\"csp\":false},\"legacy\":{\"collections\":false}}"]
|
||||
5
.astro/settings.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"_variables": {
|
||||
"lastUpdateCheck": 1749458793986
|
||||
}
|
||||
}
|
||||
2
.astro/types.d.ts
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
/// <reference types="astro/client" />
|
||||
/// <reference path="content.d.ts" />
|
||||
@@ -1,14 +1,6 @@
|
||||
import { defineConfig } from 'astro/config';
|
||||
import react from '@astrojs/react';
|
||||
|
||||
// https://astro.build/config
|
||||
import tailwind from "@astrojs/tailwind";
|
||||
|
||||
// https://astro.build/config
|
||||
import vue from "@astrojs/vue";
|
||||
|
||||
// https://astro.build/config
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
integrations: [tailwind(), vue()]
|
||||
integrations: [react()]
|
||||
});
|
||||
20649
package-lock.json
generated
28
package.json
@@ -11,18 +11,30 @@
|
||||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/tailwind": "^2.1.3",
|
||||
"@astrojs/vue": "^1.2.2",
|
||||
"astro": "^1.7.2",
|
||||
"@astrojs/react": "^4.2.1",
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@mui/icons-material": "^7.1.1",
|
||||
"@mui/material": "^7.1.1",
|
||||
"@mui/styles": "^6.4.12",
|
||||
"@reduxjs/toolkit": "^2.8.2",
|
||||
"@types/react": "^19.1.6",
|
||||
"@types/react-dom": "^19.1.6",
|
||||
"astro": "^5.5.2",
|
||||
"astro-eslint-parser": "^0.14.0",
|
||||
"axios": "^1.9.0",
|
||||
"eslint": "^8.44.0",
|
||||
"flowbite": "^1.7.0",
|
||||
"flowbite-typography": "^1.0.3",
|
||||
"formik": "^2.4.6",
|
||||
"otp-input-react": "^0.3.0",
|
||||
"react": "^19.1.0",
|
||||
"react-dom": "^19.1.0",
|
||||
"react-multi-carousel": "^2.8.6",
|
||||
"react-phone-input-2": "^2.15.1",
|
||||
"react-redux": "^9.2.0",
|
||||
"react-toastify": "^11.0.5",
|
||||
"shiki": "^0.14.3",
|
||||
"tailwind-scrollbar": "^3.0.4",
|
||||
"tailwindcss": "^3.2.4",
|
||||
"validator": "^13.15.15",
|
||||
"vite-plugin-pwa": "^0.16.4",
|
||||
"vue": "^3.2.45",
|
||||
"workbox-window": "^7.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
BIN
public/assets/AI-Attendance.webp
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
public/assets/AI-Guided-Learning.webp
Normal file
|
After Width: | Height: | Size: 286 KiB |
BIN
public/assets/Academic-Report.webp
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
public/assets/Academic_Reports.webp
Normal file
|
After Width: | Height: | Size: 99 KiB |
BIN
public/assets/Agnostic_tech.webp
Normal file
|
After Width: | Height: | Size: 88 KiB |
BIN
public/assets/Attendence.gif
Normal file
|
After Width: | Height: | Size: 2.2 MiB |
BIN
public/assets/AudioBookPlay.webp
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
BIN
public/assets/AudioBookPlay_1.webp
Normal file
|
After Width: | Height: | Size: 9.3 KiB |
BIN
public/assets/AudioBooksPlay_2.webp
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
BIN
public/assets/BannerSubscription.png
Normal file
|
After Width: | Height: | Size: 1.6 MiB |
BIN
public/assets/BannerSubscription.webp
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
public/assets/Buzzboard-Brainstorm.webp
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
public/assets/Buzzboard.webp
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
public/assets/Captivating_Worksheets.gif
Normal file
|
After Width: | Height: | Size: 3.2 MiB |
BIN
public/assets/Captivating_Worksheets.webp
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
public/assets/Class.webp
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
BIN
public/assets/Cloud.webp
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
public/assets/Co_Curriculum.webp
Normal file
|
After Width: | Height: | Size: 103 KiB |
BIN
public/assets/ConceptExCamouflage.webp
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
public/assets/ConceptExColours.webp
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
public/assets/ConceptExPatterns.webp
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
public/assets/ConceptExPollution.webp
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
public/assets/Conversational_Buddies.gif
Normal file
|
After Width: | Height: | Size: 8.9 MiB |
BIN
public/assets/Curriculum.gif
Normal file
|
After Width: | Height: | Size: 5.2 MiB |
BIN
public/assets/Curriculum_1.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
public/assets/Curriculum_2.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
public/assets/Curriculum_3.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
public/assets/Data-driven_Decision-making.webp
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
public/assets/EEA_1.webp
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
public/assets/EEA_2.webp
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
public/assets/EEA_3.webp
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
public/assets/EEA_4.webp
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
public/assets/EEA_5.webp
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
public/assets/EEA_6.webp
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
public/assets/Early_Learning_Curriculum.webp
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
public/assets/Effective_Integration.webp
Normal file
|
After Width: | Height: | Size: 57 KiB |
BIN
public/assets/Family.webp
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
public/assets/Family1.webp
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
public/assets/Friends.webp
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
public/assets/Fruits.webp
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
public/assets/Games.webp
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
public/assets/Group-chain.webp
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
public/assets/Home_Interakto.webp
Normal file
|
After Width: | Height: | Size: 8.7 KiB |
BIN
public/assets/Home_TB.webp
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
public/assets/Home_Toddler.webp
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
public/assets/Home_educator.webp
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
public/assets/Home_learner.webp
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
public/assets/Home_parent.webp
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
public/assets/Inter.ttf
Normal file
BIN
public/assets/Interakto.webp
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
public/assets/InteraktoCodingWithoutBG.webp
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
BIN
public/assets/InteraktoRobotics.webp
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
public/assets/Interakto_Celebrations.webp
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
public/assets/Interakto_Coding_img.webp
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
public/assets/Interakto_Perseverance.webp
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
BIN
public/assets/Interakto_Thinking.webp
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
BIN
public/assets/Interakto_Understanding_world.webp
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
public/assets/Interakto_coding.webp
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
public/assets/Interakto_coding_card.webp
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
public/assets/Interakto_math.webp
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
BIN
public/assets/Jr-Interface.webp
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
public/assets/Letter_B.webp
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
public/assets/MIT-Based.webp
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
public/assets/Magic-Workshetets.webp
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
public/assets/Next-Gen-Tech.webp
Normal file
|
After Width: | Height: | Size: 46 KiB |
BIN
public/assets/Observation.gif
Normal file
|
After Width: | Height: | Size: 4.1 MiB |
BIN
public/assets/Parental_Control.webp
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
public/assets/PayU_logo.png
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
BIN
public/assets/Polygon.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
public/assets/Problem_Solving.webp
Normal file
|
After Width: | Height: | Size: 8.0 KiB |
BIN
public/assets/Program-Tracking.webp
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
public/assets/Real-Time-Adaptive-Learning.webp
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
public/assets/ReportCard.webp
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
public/assets/Report_Generation.gif
Normal file
|
After Width: | Height: | Size: 3.4 MiB |
BIN
public/assets/Resources_CurriculumFocus.webp
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
public/assets/Resources_WorksheetsRFun.webp
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
public/assets/Star-empty.png
Normal file
|
After Width: | Height: | Size: 884 B |
BIN
public/assets/Star-filled.png
Normal file
|
After Width: | Height: | Size: 916 B |
BIN
public/assets/Star-green.png
Normal file
|
After Width: | Height: | Size: 896 B |
BIN
public/assets/Star-white.png
Normal file
|
After Width: | Height: | Size: 784 B |
34
public/assets/SvgTick.jsx
Normal file
@@ -0,0 +1,34 @@
|
||||
import * as React from "react"
|
||||
|
||||
function SvgTick({ height, width}) {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
// width={17.899}
|
||||
// height={17.676}
|
||||
width={width}
|
||||
height={height}
|
||||
// viewBox="0 0 17.899 17.676"
|
||||
viewBox={`0 0 ${width} ${height}`}
|
||||
// {...props}
|
||||
>
|
||||
<defs>
|
||||
<style>
|
||||
{
|
||||
".prefix__a_greenTick{fill:none;stroke:#17c558!important;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.4px}"
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
className="prefix__a_greenTick"
|
||||
d="M16.91 8.136v.741a8 8 0 11-4.744-7.312"
|
||||
/>
|
||||
<path
|
||||
className="prefix__a_greenTick"
|
||||
d="M16.909 2.492l-8.094 8.1-2.428-2.426"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
|
||||
export default SvgTick
|
||||
BIN
public/assets/TB_LearningVideosThumbnail.webp
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
public/assets/TB_LessonPlanThumbnail.webp
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
public/assets/TeenyBeans.webp
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
public/assets/Toddlers.webp
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
public/assets/Union.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
public/assets/WAU_1.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
public/assets/WAU_2.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
public/assets/about_1.webp
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
public/assets/about_us_curve.webp
Normal file
|
After Width: | Height: | Size: 1.4 KiB |