@@ -13,13 +13,13 @@ import {
1313 BlogNavSGV ,
1414 CareersSVG ,
1515 CaseStudiesSVG ,
16- CloudNavBarSVG ,
1716 CommunitySVG ,
1817 ContactSVG ,
1918 DocsNavSVG ,
2019 EnterpriseSVG ,
2120 EventsSVG ,
2221 GithubSVG ,
22+ HashnodeBlueSVG ,
2323 MindsdbLogoSVG ,
2424 NewsroomSVG ,
2525 ProductUpdatesSVG ,
@@ -36,11 +36,17 @@ function hasUrl(
3636}
3737
3838const product1 = [
39+ // {
40+ // name: 'MindsDB Pro',
41+ // description: 'Try our managed service',
42+ // href: 'https://cloud.mindsdb.com/',
43+ // Icon: <CloudNavBarSVG />,
44+ // },
3945 {
40- name : 'MindsDB Pro ' ,
41- description : 'Try our managed service ' ,
42- href : 'https://cloud.mindsdb. com/' ,
43- Icon : < CloudNavBarSVG /> ,
46+ name : 'Github ' ,
47+ description : 'Visit our Repo ' ,
48+ href : 'https://github. com/mindsdb/mindsdb /' ,
49+ Icon : < GithubSVG /> ,
4450 } ,
4551 {
4652 name : 'MindsDB Enterprise' ,
@@ -120,35 +126,41 @@ const company1 = [
120126 {
121127 name : 'About Us' ,
122128 description : 'Our vision and team' ,
123- href : 'https://mindsdb.com/joincommunity ' ,
129+ href : 'https://mindsdb.com/about ' ,
124130 Icon : < AboutUsNavSVG /> ,
125131 } ,
126132 {
127133 name : 'Events' ,
128134 description : 'Archive of past and upcoming events' ,
129- href : 'https://docs. mindsdb.com/' ,
135+ href : 'https://mindsdb.com/events ' ,
130136 Icon : < EventsSVG /> ,
131137 } ,
132138 {
133139 name : 'Newsroom' ,
134140 description : 'Read the latest news about MindsDB' ,
135- href : 'https://mindsdb.com/case-studies ' ,
141+ href : 'https://mindsdb.com/newsroom ' ,
136142 Icon : < NewsroomSVG /> ,
137143 } ,
138144] ;
139145const company2 = [
140146 {
141147 name : 'Careers' ,
142148 description : 'Learn about open roles at MindsDB' ,
143- href : 'https://mindsdb.com/machine-learning-use-cases ' ,
149+ href : 'https://mindsdb.com/careers ' ,
144150 Icon : < CareersSVG /> ,
145151 } ,
146152 {
147153 name : 'Contacts' ,
148154 description : 'Find the right channel to get in touch' ,
149- href : 'https://mindsdb.com/blog-categories/product-updates ' ,
155+ href : 'https://mindsdb.com/contact ' ,
150156 Icon : < ContactSVG /> ,
151157 } ,
158+ {
159+ name : 'Contests' ,
160+ description : 'Build Your Own AI Agent Online Hackathon' ,
161+ href : 'https://hashnode.com/hackathons/mindsdb' ,
162+ Icon : < HashnodeBlueSVG /> ,
163+ } ,
152164] ;
153165
154166const NavItem = ( {
@@ -190,10 +202,10 @@ const ProductPopover = () => {
190202 leaveFrom = "opacity-100 translate-y-0"
191203 leaveTo = "opacity-0 translate-y-1"
192204 >
193- < Popover . Panel className = "absolute -left-8 top-full z-10 mt-3 w-screen max-w-2xl overflow-hidden rounded-3xl bg-white shadow-lg ring-1 ring-gray-900/5" >
205+ < Popover . Panel className = "absolute -left-8 top-full z-10 mt-3 w-96 max-w-2xl overflow-hidden rounded-3xl bg-white shadow-lg ring-1 ring-gray-900/5" >
194206 < div className = "flex flex-row p-4 text-black " >
195207 < div className = "w-full" >
196- < p className = "mb-4 border-b px-4 pb-3 text-black" > CLOUD</ p >
208+ { /* <p className="mb-4 border-b px-4 pb-3 text-black">CLOUD</p> */ }
197209
198210 { product1 . map ( ( item ) => (
199211 < NavItem
@@ -205,7 +217,8 @@ const ProductPopover = () => {
205217 />
206218 ) ) }
207219 </ div >
208- < div className = "w-full" >
220+
221+ { /* <div className="w-full">
209222 <p className="mb-4 border-b px-4 pb-3 text-black">OPEN-SOURCE</p>
210223
211224 {product2.map((item) => (
@@ -217,7 +230,7 @@ const ProductPopover = () => {
217230 url={item.href}
218231 />
219232 ))}
220- </ div >
233+ </div> */ }
221234 </ div >
222235 </ Popover . Panel >
223236 </ Transition >
@@ -342,7 +355,7 @@ export const Header = () => {
342355 aria-label = { `${ publication . title } blog home page` }
343356 className = "flex flex-row items-center gap-3"
344357 >
345- { ! PUBLICATION_LOGO ? (
358+ { PUBLICATION_LOGO ? (
346359 < >
347360 < MindsdbLogoSVG className = "block w-32 shrink-0 md:w-40" alt = { publication . title } />
348361 < span className = "text-xl font-semibold text-white md:text-3xl" > </ span >
0 commit comments