We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efd29f0 commit ce27ab2Copy full SHA for ce27ab2
1 file changed
pages/meetups/index.tsx
@@ -13,6 +13,7 @@ import Accordion from '../../components/Accordion/Accordion';
13
import Button from '../../components/Buttons/button';
14
import Arrow from '../../components/illustration/arrow';
15
import Link from 'next/link';
16
+import Head from 'next/head';
17
import faqs from '../../config/meetup-faqs.json';
18
import meetups from '../../config/meetups.json';
19
@@ -140,6 +141,14 @@ const Meetups = () => {
140
141
142
return (
143
<div className="relative">
144
+ <Head>
145
+ <title>AsyncAPI Meetups</title>
146
+ <style>{`
147
+ html, body {
148
+ overflow-x: visible !important;
149
+ }
150
+ `}</style>
151
+ </Head>
152
<motion.div
153
className="container mt-[150px] justify-center sm:py-6"
154
variants={containerVariants}
0 commit comments