update
This commit is contained in:
33
superpage/src/components/Course/Course.astro
Normal file
33
superpage/src/components/Course/Course.astro
Normal file
@@ -0,0 +1,33 @@
|
||||
---
|
||||
import Clients from "../Clients.astro";
|
||||
import Modules from "./Modules.astro";
|
||||
import Features from "../Features.astro";
|
||||
import Cert from "./Cert.astro";
|
||||
import Trainer from "./Trainer.astro";
|
||||
import Plans from "./Plans.astro";
|
||||
import Faq from "./Faq.astro";
|
||||
|
||||
const { trainer } = Astro.props;
|
||||
---
|
||||
|
||||
<Plans />
|
||||
|
||||
<Clients />
|
||||
|
||||
<Features />
|
||||
|
||||
<Modules>
|
||||
<slot name="modules" />
|
||||
</Modules>
|
||||
|
||||
{trainer && <Trainer name={trainer} />}
|
||||
|
||||
{
|
||||
Astro.slots.has("faq") && (
|
||||
<Faq>
|
||||
<slot name="faq" />
|
||||
</Faq>
|
||||
)
|
||||
}
|
||||
|
||||
<Cert />
|
||||
Reference in New Issue
Block a user