parent
0d9374285b
commit
b75d36a8c0
32 changed files with 80 additions and 97 deletions
@ -0,0 +1,10 @@ |
|||||||
|
--- |
||||||
|
import { GenerateRoadmap } from '../../components/GenerateRoadmap/GenerateRoadmap'; |
||||||
|
import BaseLayout from '../../layouts/BaseLayout.astro'; |
||||||
|
import { CheckSubscriptionVerification } from '../../components/Billing/CheckSubscriptionVerification'; |
||||||
|
--- |
||||||
|
|
||||||
|
<BaseLayout title='Roadmap AI' permalink='/ai-roadmaps'> |
||||||
|
<GenerateRoadmap client:load /> |
||||||
|
<CheckSubscriptionVerification client:load /> |
||||||
|
</BaseLayout> |
@ -1,17 +0,0 @@ |
|||||||
--- |
|
||||||
import { AICourse } from '../../components/GenerateCourse/AICourse'; |
|
||||||
import BaseLayout from '../../layouts/BaseLayout.astro'; |
|
||||||
import { CheckSubscriptionVerification } from '../../components/Billing/CheckSubscriptionVerification'; |
|
||||||
|
|
||||||
const ogImage = 'https://roadmap.sh/og-images/ai-tutor.png'; |
|
||||||
--- |
|
||||||
|
|
||||||
<BaseLayout |
|
||||||
title='AI Tutor' |
|
||||||
noIndex={true} |
|
||||||
ogImageUrl={ogImage} |
|
||||||
description='Learn anything with AI Tutor. Pick a topic, and the AI will guide you through the learning process.' |
|
||||||
> |
|
||||||
<AICourse client:load /> |
|
||||||
<CheckSubscriptionVerification client:load /> |
|
||||||
</BaseLayout> |
|
@ -1,10 +1,18 @@ |
|||||||
--- |
--- |
||||||
import { GenerateRoadmap } from '../../components/GenerateRoadmap/GenerateRoadmap'; |
import { AICourse } from '../../components/GenerateCourse/AICourse'; |
||||||
import BaseLayout from '../../layouts/BaseLayout.astro'; |
import BaseLayout from '../../layouts/BaseLayout.astro'; |
||||||
import { CheckSubscriptionVerification } from '../../components/Billing/CheckSubscriptionVerification'; |
import { CheckSubscriptionVerification } from '../../components/Billing/CheckSubscriptionVerification'; |
||||||
|
|
||||||
|
const ogImage = 'https://roadmap.sh/og-images/ai-tutor.png'; |
||||||
--- |
--- |
||||||
|
|
||||||
<BaseLayout title='Roadmap AI' permalink='/ai'> |
<BaseLayout |
||||||
<GenerateRoadmap client:load /> |
title='Roadmap AI' |
||||||
|
noIndex={true} |
||||||
|
ogImageUrl={ogImage} |
||||||
|
description='Learn anything with AI Tutor. Pick a topic, choose a difficulty level and the AI will guide you through the learning process.' |
||||||
|
> |
||||||
|
<div slot='course-announcement'></div> |
||||||
|
<AICourse client:load /> |
||||||
<CheckSubscriptionVerification client:load /> |
<CheckSubscriptionVerification client:load /> |
||||||
</BaseLayout> |
</BaseLayout> |
||||||
|
Loading…
Reference in new issue