123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- export default {
- tagName: 'main',
- children: [
- {
- tagName: 'section',
- children: [
- {
- tagName: 'div',
- children: [
- {
- tagName: 'p',
- text: 'Hello',
- attrs: {
- class: 'greetings__p',
- },
- },
- {
- tagName: 'p',
- text: 'my',
- attrs: {
- class: 'greetings__p',
- },
- },
- {
- tagName: 'p',
- text: 'dear friends',
- attrs: {
- class: 'greetings__p',
- },
- },
- ],
- text: '',
- attrs: {
- class: 'greetings',
- },
- },
- {
- tagName: 'div',
- children: [
- {
- tagName: 'span',
- text: 'We are',
- attrs: {
- class: 'greetings__span',
- },
- },
- {
- tagName: 'span',
- text: 'glad to see you',
- attrs: {
- class: 'greetings__span',
- },
- },
- {
- tagName: 'span',
- text: 'Here!',
- attrs: {
- class: 'greetings__span',
- },
- },
- ],
- text: '',
- attrs: {
- class: 'greetings',
- },
- },
- ],
- attrs: {},
- },
- {
- tagName: 'section',
- children: [
- {
- tagName: 'div',
- children: [
- {
- tagName: 'p',
- text: 'You are here to study!',
- attrs: {
- class: 'introduction__p',
- },
- },
- ],
- text: '',
- attrs: {
- class: 'introduction',
- },
- },
- {
- tagName: 'div',
- children: [
- {
- tagName: 'span',
- text: 'And get a lot new information ',
- attrs: {
- class: 'introduction__span',
- },
- },
- {
- tagName: 'span',
- text: 'with our educationl platform A-level.',
- attrs: {
- class: 'introduction__span',
- },
- },
- ],
- text: '',
- attrs: {
- class: 'introduction',
- },
- },
- ],
- text: '',
- attrs: {},
- },
- ],
- text: '',
- attrs: {},
- };
|