-
Notifications
You must be signed in to change notification settings - Fork 179
/
Copy pathLayoutLearn.js
70 lines (58 loc) · 2.58 KB
/
LayoutLearn.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/**
* Copyright (c) 2022, WSO2 LLC (http://www.wso2.com) All Rights Reserved.
*
* WSO2 LLC licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except
* in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import Head from 'next/head';
import dynamic from 'next/dynamic';
import { Row, Stack } from 'react-bootstrap';
export default function Layout({ children }) {
const TopNav = dynamic(() => import('../components/common/top-nav/TopNav'), { ssr: false });
const Meta = dynamic(() => import('../components/common/meta/Meta'), { ssr: false });
const Footer = dynamic(() => import('../components/common/footer/Footer'), { ssr: false });
return (
<>
<Head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{/* Google Tag Manager */}
<script
// eslint-disable-next-line react/no-danger
dangerouslySetInnerHTML={{
__html: `(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.setAttributeNode(d.createAttribute('data-ot-ignore'));j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-PSL2TX4');`
}}
/>
{/* End Google Tag Manager */}
<script type="text/javascript" crossOrigin="true" src="https://cdn.jsdelivr.net/npm/@docsearch/js@alpha" />
{/* CookiePro Cookies Consent Notice start for ballerina.io */}
<script src="https://cookie-cdn.cookiepro.com/scripttemplates/otSDKStub.js" type="text/javascript" charSet="UTF-8" data-domain-script="630ad396-5fd5-4745-92ae-2765dc8841ee" defer />
{/* CookiePro Cookies Consent Notice end for ballerina.io */}
</Head>
<Meta />
<Stack gap={0} className='main-wrapper other'>
<TopNav launcher='docs' />
<div className='wrap-page-content' style={{paddingBottom:"0"}}>
<Row className='community-wrap-row'>
{children}
</Row>
</div>
<Footer />
</Stack>
</>
);
}