diff --git a/README.md b/README.md
index 75fc343..a6d8adb 100644
--- a/README.md
+++ b/README.md
@@ -1,34 +1,13 @@
-This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
+# Education technologies, news, books, courses, videos, articles, podcasts, and more
+
-## Getting Started
+## Run locally
+This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
First, run the development server:
```bash
npm run dev
-# or
-yarn dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
-
-You can start editing the page by modifying `pages/page.tsx`. The page auto-updates as you edit the file.
-
-[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`.
-
-The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
-
-## Learn More
-
-To learn more about Next.js, take a look at the following resources:
-
-- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
-- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
-
-You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
-
-## Deploy on Vercel
-
-The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
-
-Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
diff --git a/_templates/_page.tsx b/_templates/_page.tsx
new file mode 100644
index 0000000..b53d36d
--- /dev/null
+++ b/_templates/_page.tsx
@@ -0,0 +1,9 @@
+import type { NextPage } from 'next'
+
+const SomePage: NextPage = () => {
+ return (
+
+ )
+}
+
+export default FreeUniversitiesPage
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index b9c294c..5f9f259 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,6 +1,9 @@
import type { ReactNode } from 'react'
-import { Metadata } from 'next'
+import type { Metadata } from 'next'
import Script from 'next/script'
+
+import { GlobalMenu } from '@/components'
+
import '@/styles/global.css'
export const metadata: Metadata = {
@@ -16,6 +19,9 @@ export default function RootLayout ({
return (
+
+
+
{children}
diff --git a/src/app/news/page.tsx b/src/app/news/page.tsx
new file mode 100644
index 0000000..61c49cf
--- /dev/null
+++ b/src/app/news/page.tsx
@@ -0,0 +1,9 @@
+import type { NextPage } from 'next'
+
+const NewsPage: NextPage = () => {
+ return (
+
NewsPage
+ )
+}
+
+export default NewsPage
diff --git a/src/app/page.tsx b/src/app/page.tsx
index fc15724..2b54f59 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,4 +1,4 @@
-import { NextPage } from 'next'
+import type { NextPage } from 'next'
import Link from 'next/link'
const IndexPage: NextPage = () => {
diff --git a/src/app/systems/page.tsx b/src/app/systems/page.tsx
new file mode 100644
index 0000000..ac11e07
--- /dev/null
+++ b/src/app/systems/page.tsx
@@ -0,0 +1,27 @@
+import type { NextPage } from 'next'
+
+import { SystemsList } from '@/components'
+
+const systems = [
+ {
+ name: 'Flipped classroom',
+ description: 'Flipped classroom is an instructional strategy and a type of blended learning that reverses the traditional learning environment by delivering instructional content, often online, outside of the classroom. It moves activities, including those that may have traditionally been considered homework, into the classroom. In a flipped classroom, students watch online lectures, collaborate in online discussions, or carry out research at home and engage in concepts in the classroom with the guidance of a mentor.',
+ wiki: 'https://en.wikipedia.org/wiki/Flipped_classroom',
+ },
+ {
+ name: 'Personalized learning',
+ description: 'Personalized learning, individualized instruction, personal learning environment and direct instruction all refer to efforts to tailor education to meet the different needs of students. In addition, various terms are used to describe what personalized learning looks like, including differentiated instruction, individualized instruction and adaptive learning.',
+ wiki: 'https://en.wikipedia.org/wiki/Personalized_learning',
+ },
+]
+
+const SystemsPage: NextPage = () => {
+ return (
+