-
Notifications
You must be signed in to change notification settings - Fork 0
/
magnolia.config.js
34 lines (32 loc) · 1.35 KB
/
magnolia.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import Home from "./templates/pages/Home";
import Basic from "./templates/pages/Basic";
import About from "./templates/pages/About";
import Section from "./templates/components/Section";
import Carousel from "./templates/components/Carousel";
import Banner from "./templates/components/Banner";
import TextImage from "./templates/components/TextImage";
import Card from "./templates/components/Card";
import Columns from "./templates/components/Columns";
import Quote from "./templates/components/Quote";
import Map from "./templates/components/Map";
import Link from "./templates/components/Link";
import ContactForm from "./templates/components/ContactForm";
import AboutSection from "./templates/components/AboutSection";
export const config = {
componentMappings: {
"saas-demo:pages/Home": Home,
"saas-demo:pages/Basic": Basic,
"saas-demo:pages/About": About,
"saas-demo:components/Section": Section,
"saas-demo:components/Carousel": Carousel,
"saas-demo:components/Banner": Banner,
"saas-demo:components/TextImage": TextImage,
"saas-demo:components/Card": Card,
"saas-demo:components/Columns": Columns,
"saas-demo:components/Quote": Quote,
"saas-demo:components/Map": Map,
"saas-demo:components/Link": Link,
"saas-demo:components/ContactForm": ContactForm,
"saas-demo:components/AboutSection": AboutSection,
},
};