{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/OSYwCjaLaXcM0xBGRns6/5x7oCcXfG2UXUIe1yjex/ResearchHubTable.js", "ssg:https://framerusercontent.com/modules/PfxZJKRPD8PcmOQl94DA/1d27KYyxai9aJ64TVY7u/JGIdC9NU9.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";// Load Plus Jakarta Sans Font\nconst fontFamily=\"'Plus Jakarta Sans', sans-serif\";export default function ResearchPapersTable(props){const API_BASE_URL=\"https://genloop-researchpaper-api.genloop-researchpaper.workers.dev/v1/getResearchPapers\";const[data,setData]=useState([]);const[loading,setLoading]=useState(true);const[error,setError]=useState(\"\");const[categories,setCategories]=useState([]);const[startDate,setStartDate]=useState(\"\");const[endDate,setEndDate]=useState(\"\");const[isMobile,setIsMobile]=useState(false)// Default to false (SSR-safe)\n;// Pagination state\nconst[currentPage,setCurrentPage]=useState(1);const[itemsPerPage,setItemsPerPage]=useState(10)// Default 10 items per page\n;// Mobile detection effect (RESTORED)\nuseEffect(()=>{if(typeof window===\"undefined\")return;// Prevents SSR errors\n// This runs only on the client side\nconst handleResize=()=>{setIsMobile(window.innerWidth<=1200);};// Set initial value after mounting\nhandleResize();window.addEventListener(\"resize\",handleResize);return()=>window.removeEventListener(\"resize\",handleResize);},[]);// Parse date from URL format (DDMMYYYY) to input format (YYYY-MM-DD)\nconst parseUrlDate=urlDate=>{if(!urlDate||urlDate.length!==8)return\"\";// Ensure we have valid numbers\nconst day=urlDate.slice(0,2);const month=urlDate.slice(2,4);const year=urlDate.slice(4);// Basic validation\nif(isNaN(day)||isNaN(month)||isNaN(year))return\"\";return`${year}-${month}-${day}`;};// URL parameter reading effect (FIXED)\nuseEffect(()=>{if(typeof window===\"undefined\")return;// Prevents SSR errors\nconst params=new URLSearchParams(window.location.search);const urlStartDate=params.get(\"start_date\");const urlEndDate=params.get(\"end_date\");if(urlStartDate){setStartDate(parseUrlDate(urlStartDate));}if(urlEndDate){setEndDate(parseUrlDate(urlEndDate));}},[])// Empty dependency array - only run once on mount\n;// URL updating effect\nuseEffect(()=>{const params=new URLSearchParams(window.location.search);if(startDate)params.set(\"start_date\",formatDate(startDate));else params.delete(\"start_date\");if(endDate)params.set(\"end_date\",formatDate(endDate));else params.delete(\"end_date\");const newUrl=`${window.location.pathname}?${params.toString()}`;window.history.replaceState(null,\"\",newUrl);},[startDate,endDate]);const formatDate=date=>{if(!date)return\"\";const[year,month,day]=date.split(\"-\");return`${day}${month}${year}`;};const fetchData=async()=>{setLoading(true);setError(\"\");try{const params=new URLSearchParams;if(startDate)params.append(\"start_date\",formatDate(startDate));if(endDate)params.append(\"end_date\",formatDate(endDate));const url=`${API_BASE_URL}?${params.toString()}`;const response=await fetch(url,{method:\"GET\",headers:{\"Content-Type\":\"application/json\"}});if(!response.ok){throw new Error(`HTTP Error: ${response.status}`);}const result=await response.json();if(result.filtered_data){// Sort data in descending order based on score (paper[6])\nconst sortedData=result.filtered_data.sort((a,b)=>b[6]-a[6]);setData(sortedData);// Reset to first page when data changes\nsetCurrentPage(1);// Extract unique categories\nconst uniqueCategories=[...new Set(sortedData.map(paper=>paper[1]))];setCategories(uniqueCategories);}else{setData([]);setError(\"No data found.\");}}catch(err){setError(err.message);}finally{setLoading(false);}};// Data fetching effect (FIXED)\nuseEffect(()=>{// Add a small delay to ensure URL params are parsed first\nconst timer=setTimeout(()=>{void fetchData();},100);return()=>clearTimeout(timer);},[startDate,endDate]);// Pagination functions\nconst totalPages=Math.ceil(data.length/itemsPerPage);const handlePageChange=page=>{setCurrentPage(page);// Scroll to top of table when changing pages\nwindow.scrollTo({top:document.getElementById(\"research-table\").offsetTop-20,behavior:\"smooth\"});};const handlePrevPage=()=>{if(currentPage>1){setCurrentPage(currentPage-1);}};const handleNextPage=()=>{if(currentPage<totalPages){setCurrentPage(currentPage+1);}};const handleItemsPerPageChange=e=>{setItemsPerPage(Number(e.target.value));setCurrentPage(1)// Reset to first page when changing items per page\n;};// Get current page data\nconst paginatedData=data.slice((currentPage-1)*itemsPerPage,currentPage*itemsPerPage);// Calculate visible page numbers\nconst getPageNumbers=()=>{const pageNumbers=[];const maxPageButtons=isMobile?3:5;if(totalPages<=maxPageButtons){// Show all pages if total pages is less than max buttons\nfor(let i=1;i<=totalPages;i++){pageNumbers.push(i);}}else{// Always include first page\npageNumbers.push(1);// Calculate middle pages\nlet startPage=Math.max(2,currentPage-Math.floor(maxPageButtons/2));let endPage=Math.min(totalPages-1,startPage+maxPageButtons-3);// Adjust if we're near the end\nif(endPage-startPage<maxPageButtons-3){startPage=Math.max(2,endPage-(maxPageButtons-3));}// Add ellipsis if needed\nif(startPage>2){pageNumbers.push(\"...\");}// Add middle pages\nfor(let i=startPage;i<=endPage;i++){pageNumbers.push(i);}// Add ellipsis if needed\nif(endPage<totalPages-1){pageNumbers.push(\"...\");}// Always include last page\npageNumbers.push(totalPages);}return pageNumbers;};return /*#__PURE__*/_jsxs(\"div\",{id:\"research-table\",style:{fontFamily,width:\"100%\",padding:\"16px\",backgroundColor:\"transparent\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{...filterContainerStyle,flexDirection:isMobile?\"column\":\"row\",alignItems:isMobile?\"flex-start\":\"center\",justifyContent:\"space-between\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:isMobile?\"column\":\"row\",alignItems:isMobile?\"flex-start\":\"center\",gap:\"12px\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",alignItems:\"center\",gap:\"8px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{color:\"white\",fontSize:\"16px\",minWidth:isMobile?\"90px\":\"auto\"},children:\"Start Date:\"}),/*#__PURE__*/_jsx(\"input\",{type:\"date\",value:startDate,onChange:e=>setStartDate(e.target.value),style:filterStyle})]}),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",alignItems:\"center\",gap:\"8px\",marginTop:isMobile?\"8px\":\"0\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{color:\"white\",fontSize:\"16px\",minWidth:isMobile?\"90px\":\"auto\"},children:\"End Date:\"}),/*#__PURE__*/_jsx(\"input\",{type:\"date\",value:endDate,onChange:e=>setEndDate(e.target.value),style:filterStyle})]})]}),!loading&&data.length>0&&/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",alignItems:\"center\",gap:\"8px\",marginTop:isMobile?\"16px\":\"0\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{color:\"white\",fontSize:\"16px\"},children:\"Show:\"}),/*#__PURE__*/_jsxs(\"select\",{value:itemsPerPage,onChange:handleItemsPerPageChange,style:filterStyle,children:[/*#__PURE__*/_jsx(\"option\",{value:10,children:\"10\"}),/*#__PURE__*/_jsx(\"option\",{value:25,children:\"25\"}),/*#__PURE__*/_jsx(\"option\",{value:50,children:\"50\"})]})]})]}),loading?/*#__PURE__*/_jsx(\"div\",{style:loadingContainerStyle,children:/*#__PURE__*/_jsx(\"div\",{style:loadingSpinnerStyle})}):error?/*#__PURE__*/_jsx(\"div\",{style:errorStyle,children:error}):/*#__PURE__*/_jsxs(\"div\",{style:{overflowX:\"auto\"},children:[data.length>0&&/*#__PURE__*/_jsxs(\"div\",{style:{color:\"rgba(255, 255, 255, 0.7)\",marginBottom:\"12px\",fontSize:\"14px\"},children:[\"Showing \",(currentPage-1)*itemsPerPage+1,\" to\",\" \",Math.min(currentPage*itemsPerPage,data.length),\" \",\"of \",data.length,\" papers\"]}),!isMobile?/*#__PURE__*/_jsx(\"div\",{style:{borderRadius:\"8px\",overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"table\",{style:tableStyle,children:[/*#__PURE__*/_jsx(\"thead\",{children:/*#__PURE__*/_jsx(\"tr\",{style:tableHeaderStyle,children:[\"S.No.\",\"Title\",\"Publish Date\",\"Highlight\",\"Author\",\"Link\",\"Score\"].map((header,index)=>/*#__PURE__*/_jsx(\"th\",{style:headerCellStyle,children:header},index))})}),/*#__PURE__*/_jsx(\"tbody\",{children:paginatedData.map((paper,index)=>/*#__PURE__*/_jsxs(\"tr\",{style:tableRowStyle,children:[/*#__PURE__*/_jsx(\"td\",{style:snColumnStyle,children:(currentPage-1)*itemsPerPage+index+1}),\" \",/*#__PURE__*/_jsx(\"td\",{style:titleColumnStyle,children:paper[0]}),\" \",/*#__PURE__*/_jsx(\"td\",{style:cellStyle,children:paper[2]}),\" \",/*#__PURE__*/_jsx(\"td\",{style:highlightColumnStyle,children:paper[3]}),\" \",/*#__PURE__*/_jsx(\"td\",{style:authorColumnStyle,children:paper[4]}),\" \",/*#__PURE__*/_jsx(\"td\",{style:cellStyle,children:/*#__PURE__*/_jsx(\"a\",{href:paper[5],style:linkStyle,target:\"_blank\",rel:\"noopener noreferrer\",children:\"View Research Paper\"})}),\" \",/*#__PURE__*/_jsx(\"td\",{style:scoreColumnStyle,children:(paper[6]*10).toFixed(2)})]},index))})]})}):/*#__PURE__*/_jsx(\"div\",{style:cardContainerStyle,children:paginatedData.map((paper,index)=>/*#__PURE__*/_jsxs(\"div\",{style:cardStyle,children:[/*#__PURE__*/_jsx(\"h3\",{style:cardTitleStyle,children:paper[0]}),/*#__PURE__*/_jsx(\"p\",{style:cardDescriptionStyle,children:paper[3]}),/*#__PURE__*/_jsxs(\"p\",{style:cardMetaStyle,children:[\"Author: \",paper[4]]}),/*#__PURE__*/_jsx(\"p\",{style:cardMetaStyle,children:/*#__PURE__*/_jsx(\"a\",{href:paper[5],style:linkStyle,target:\"_blank\",rel:\"noopener noreferrer\",children:\"View Research Paper\"})}),/*#__PURE__*/_jsxs(\"p\",{style:cardMetaStyle,children:[\"Score: \",(paper[6]*10).toFixed(2)]}),/*#__PURE__*/_jsxs(\"p\",{style:cardMetaStyle,children:[\"Date: \",paper[2]]})]},index))}),data.length>0&&/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\",marginTop:\"24px\",flexWrap:\"wrap\",gap:\"8px\"},children:[/*#__PURE__*/_jsx(\"button\",{onClick:handlePrevPage,disabled:currentPage===1,style:{...paginationButtonStyle,opacity:currentPage===1?.5:1,cursor:currentPage===1?\"not-allowed\":\"pointer\"},children:\"\u2190\"}),getPageNumbers().map((page,index)=>/*#__PURE__*/_jsx(\"button\",{onClick:()=>typeof page===\"number\"?handlePageChange(page):null,style:{...paginationButtonStyle,...page===currentPage?paginationActiveStyle:{},cursor:typeof page===\"number\"?\"pointer\":\"default\"},disabled:page===\"...\",children:page},index)),/*#__PURE__*/_jsx(\"button\",{onClick:handleNextPage,disabled:currentPage===totalPages,style:{...paginationButtonStyle,opacity:currentPage===totalPages?.5:1,cursor:currentPage===totalPages?\"not-allowed\":\"pointer\"},children:\"\u2192\"})]})]})]});}// Pagination Styles\nconst paginationButtonStyle={background:\"rgba(253, 253, 253, 0.1)\",color:\"white\",border:\"none\",borderRadius:\"8px\",padding:\"8px 12px\",minWidth:\"40px\",fontSize:\"14px\",fontWeight:\"600\",transition:\"all 0.2s ease\"};const paginationActiveStyle={background:\"#009FF5\",color:\"white\"};// Existing Styles\nconst filterContainerStyle={display:\"flex\",alignItems:\"center\",flexWrap:\"wrap\",marginBottom:\"16px\",gap:\"12px\"};const filterStyle={background:\"rgba(253, 253, 253, 0.1)\",color:\"white\",fontSize:\"16px\",padding:\"8px 16px\",borderRadius:\"8px\",border:\"0px\",width:\"180px\",minWidth:\"180px\",maxWidth:\"180px\"};const loadingContainerStyle={textAlign:\"center\",padding:\"32px\"};const loadingSpinnerStyle={width:\"48px\",height:\"48px\",border:\"4px solid #009FF5\",borderTop:\"4px solid transparent\",borderRadius:\"50%\",animation:\"spin 1s linear infinite\",margin:\"auto\"};const errorStyle={color:\"#FF4A4A\",textAlign:\"center\",padding:\"32px\",fontSize:\"18px\",fontWeight:\"600\"};const tableStyle={width:\"100%\",borderCollapse:\"collapse\",color:\"white\"};const tableHeaderStyle={borderBottom:\"1px solid rgba(255, 255, 255, 0.2)\",background:\"rgba(255, 255, 255, 0.05)\",align:\"left\"};const headerCellStyle={padding:\"16px\",fontSize:\"16px\",fontWeight:\"600\",textAlign:\"left\",whiteSpace:\"nowrap\",minWidth:\"120px\"};const tableRowStyle={borderBottom:\"1px solid rgba(255, 255, 255, 0.1)\",transition:\"background 0.2s ease-in-out\",width:\"100%\"};const cellStyle={padding:\"16px\",fontSize:\"15px\",color:\"rgba(255, 255, 255, 0.8)\"};// Custom styles for wider columns\nconst snColumnStyle={...cellStyle};const scoreColumnStyle={...cellStyle};const categoryColumnStyle={...cellStyle};const authorColumnStyle={...cellStyle};const highlightColumnStyle={...cellStyle};const titleColumnStyle={...cellStyle};const linkStyle={color:\"#009FF5\",textDecoration:\"underline\"};const cardContainerStyle={display:\"grid\",gap:\"16px\"};const cardStyle={backgroundColor:\"rgba(253, 253, 253, 0.05)\",padding:\"16px\",borderRadius:\"8px\"};const cardTitleStyle={color:\"#FFFFFF\",fontSize:\"16px\"};const cardDescriptionStyle={color:\"rgba(255, 255, 255, 0.8)\",fontSize:\"12px\"};const cardMetaStyle={fontSize:\"12px\",color:\"rgba(255, 255, 255, 0.8)\"};// Add property controls\naddPropertyControls(ResearchPapersTable,{defaultItemsPerPage:{type:ControlType.Number,title:\"Default Items Per Page\",defaultValue:10,min:5,max:100,step:5}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ResearchPapersTable\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ResearchHubTable.map", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Navbar from\"#framer/local/canvasComponent/IeppLEON0/IeppLEON0.js\";import Button5 from\"#framer/local/canvasComponent/MDiO5Ko_5/MDiO5Ko_5.js\";import Footer from\"#framer/local/canvasComponent/WCp29TwIK/WCp29TwIK.js\";import ResearchPapersTable from\"#framer/local/codeFile/M5JhY9p/ResearchHubTable.js\";import metadataProvider from\"#framer/local/webPageMetadata/JGIdC9NU9/JGIdC9NU9.js\";const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const RichTextWithFX=withFX(RichText);const Button5Fonts=getFonts(Button5);const FormContainerWithFX=withFX(FormContainer);const ResearchPapersTableFonts=getFonts(ResearchPapersTable);const MotionDivWithFX=withFX(motion.div);const FooterFonts=getFonts(Footer);const NavbarFonts=getFonts(Navbar);const breakpoints={glQBwlFlO:\"(min-width: 810px) and (max-width: 1199px)\",gqnio6OWp:\"(min-width: 1440px)\",hvaRIXt0b:\"(max-width: 809px)\",lC7Uzk4re:\"(min-width: 1200px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-4GFVE\";const variantClassNames={glQBwlFlO:\"framer-v-ybxel9\",gqnio6OWp:\"framer-v-1jvkv0l\",hvaRIXt0b:\"framer-v-1qvygty\",lC7Uzk4re:\"framer-v-191gqt9\"};const transition1={damping:50,delay:.2,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:.7,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition2={damping:50,delay:.4,mass:1,stiffness:200,type:\"spring\"};const transition3={damping:50,delay:.6,mass:1,stiffness:200,type:\"spring\"};const transition4={damping:50,delay:.8,mass:1,stiffness:200,type:\"spring\"};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const transition5={damping:50,delay:1,mass:1,stiffness:200,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Small desktop\":\"lC7Uzk4re\",Desktop:\"gqnio6OWp\",Phone:\"hvaRIXt0b\",Tablet:\"glQBwlFlO\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"gqnio6OWp\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"gqnio6OWp\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 25, 38); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1jvkv0l\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e6cdc2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1naj5n\",\"data-framer-name\":\"Home+Blogs\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o1vwa5\",\"data-framer-name\":\"Home\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1upqscm\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{glQBwlFlO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+200+0+-438.5),pixelHeight:1365,pixelWidth:1793,sizes:`calc(${componentViewport?.width||\"100vw\"} + 873px)`,src:\"https://framerusercontent.com/images/YPHdBiGpz6L7lEE9Izj622Q6Q.png\",srcSet:\"https://framerusercontent.com/images/YPHdBiGpz6L7lEE9Izj622Q6Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/YPHdBiGpz6L7lEE9Izj622Q6Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YPHdBiGpz6L7lEE9Izj622Q6Q.png 1793w\"}},hvaRIXt0b:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+150+0+-2.25),pixelHeight:1365,pixelWidth:1793,sizes:`calc(${componentViewport?.width||\"100vw\"} + 15px)`,src:\"https://framerusercontent.com/images/YPHdBiGpz6L7lEE9Izj622Q6Q.png\",srcSet:\"https://framerusercontent.com/images/YPHdBiGpz6L7lEE9Izj622Q6Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/YPHdBiGpz6L7lEE9Izj622Q6Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YPHdBiGpz6L7lEE9Izj622Q6Q.png 1793w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+180+0+-438.5),pixelHeight:1365,pixelWidth:1793,sizes:\"1793px\",src:\"https://framerusercontent.com/images/YPHdBiGpz6L7lEE9Izj622Q6Q.png\",srcSet:\"https://framerusercontent.com/images/YPHdBiGpz6L7lEE9Izj622Q6Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/YPHdBiGpz6L7lEE9Izj622Q6Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YPHdBiGpz6L7lEE9Izj622Q6Q.png 1793w\"},className:\"framer-1onca9s\",\"data-framer-appear-id\":\"1onca9s\",\"data-framer-name\":\"Shadow framer\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rpdief\",\"data-framer-name\":\"Shadow\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xka5e0\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ro3x4b\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-je6eok\"})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18px8dv\",\"data-framer-name\":\"Header container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1057yi1\",\"data-framer-name\":\"Content container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hvaRIXt0b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e51eced5-b563-455f-9e21-642d153fa9e6, rgb(83, 189, 245))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"LLM \"}),\"Research Hub\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e51eced5-b563-455f-9e21-642d153fa9e6, rgb(83, 189, 245))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"LLM \"}),\"Research Hub\"]})}),className:\"framer-yt3i37\",\"data-framer-name\":\"Get the Latest in GenAI Delivered\",fonts:[\"GF;Plus Jakarta Sans-800\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hvaRIXt0b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Your go-to hub for the latest breakthroughs in LLM research. We analyze, rank, and curate the most impactful papers every week\u2014bringing you the insights that matter.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Your go-to hub for the latest breakthroughs in LLM research. We analyze, rank, and curate the most impactful papers every week\u2014bringing you the insights that matter.\"})}),className:\"framer-137yxvq\",\"data-framer-name\":\"Join industry leaders receiving curated insights on LLMs, AI strategies, and implementations best practices.\",fonts:[\"GF;Plus Jakarta Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14vmdx1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hvaRIXt0b:{__framer__animate:{transition:transition2},children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Subscribe to get latest insights straight to your inbox.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Subscribe to get latest insights straight to your inbox.\"})}),className:\"framer-1wh2gei\",\"data-framer-name\":\"Join industry leaders receiving curated insights on LLMs, AI strategies, and implementations best practices.\",fonts:[\"GF;Plus Jakarta Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(FormContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,action:\"https://api.framer.com/forms/v1/forms/3f1d764a-ad65-4a9e-9761-74d70b06afdf/submit\",className:\"framer-13gwlrk\",\"data-border\":true,nodeId:\"k9eOJyhKz\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"label\",{className:\"framer-12emzoz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hvaRIXt0b:{placeholder:\"Enter your email\"}},children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-r6c2g3\",inputName:\"Email\",placeholder:\"Enter your email here\",required:true,type:\"email\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{glQBwlFlO:{y:(componentViewport?.y||0)+0+0+0+0+0+0+200+0+0+0+0+507+0+147+12},hvaRIXt0b:{width:\"105px\",y:(componentViewport?.y||0)+0+0+0+0+0+0+150+0+0+0+0+369+0+117+8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,y:(componentViewport?.y||0)+0+0+0+0+0+0+180+0+0+0+0+507+0+147+12,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10xlfa2-container\",nodeId:\"vMcHYhhOQ\",scopeId:\"JGIdC9NU9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hvaRIXt0b:{Sa8efRc5g:14,style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button5,{GHVvgjS_a:\"Subscribe\",height:\"100%\",id:\"vMcHYhhOQ\",layoutId:\"vMcHYhhOQ\",lenmXfsud:false,Sa8efRc5g:16,SAkmUXeMq:\"16px 16px 16px 16px\",type:\"submit\",variant:formVariants(formState,{error:\"UtNV57ir6\",pending:\"CBkEBWfQr\",success:\"DOgsGzZnV\"},\"GNgK1yCKn\"),width:\"100%\"})})})})})]})})]})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l1d1gy\",\"data-framer-name\":\"Category Fitler Table \",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kfg9wu-container\",isAuthoredByUser:true,nodeId:\"FahhJL6q3\",scopeId:\"JGIdC9NU9\",children:/*#__PURE__*/_jsx(ResearchPapersTable,{defaultItemsPerPage:10,height:\"100%\",id:\"FahhJL6q3\",layoutId:\"FahhJL6q3\",style:{maxWidth:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-30x9mo\",\"data-framer-name\":\"Footer Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{glQBwlFlO:{y:(componentViewport?.y||0)+0+0+0+1231+72+0},hvaRIXt0b:{y:(componentViewport?.y||0)+0+0+0+987+32+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+0+1211+72+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fhy795-container\",nodeId:\"NA8U6mC2z\",scopeId:\"JGIdC9NU9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hvaRIXt0b:{variant:\"uEYVlEjsf\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"NA8U6mC2z\",layoutId:\"NA8U6mC2z\",style:{width:\"100%\"},variant:\"WFhPxv2Zn\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{glQBwlFlO:{height:110},hvaRIXt0b:{height:110}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k5if0l-container\",layoutScroll:true,nodeId:\"Xw97lfjpm\",scopeId:\"JGIdC9NU9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{glQBwlFlO:{style:{width:\"100%\"},variant:\"m8Q6uog18\",Y3kPlCrzY:\"24px 60px 24px 60px\"},hvaRIXt0b:{style:{width:\"100%\"},variant:\"m8Q6uog18\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"Xw97lfjpm\",layoutId:\"Xw97lfjpm\",style:{height:\"100%\",width:\"100%\"},variant:\"LPDLsbS_i\",width:\"100%\",Y3kPlCrzY:\"24px 20px 24px 20px\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4GFVE.framer-klry98, .framer-4GFVE .framer-klry98 { display: block; }\",\".framer-4GFVE.framer-1jvkv0l { align-content: center; align-items: center; background-color: #001926; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-4GFVE .framer-e6cdc2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4GFVE .framer-1naj5n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4GFVE .framer-1o1vwa5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: center; overflow: visible; padding: 180px 0px 42px 0px; position: relative; width: 100%; }\",\".framer-4GFVE .framer-1upqscm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-4GFVE .framer-1onca9s { bottom: -490px; flex: none; left: -496px; opacity: 0.7; overflow: visible; position: absolute; right: -496px; top: -438px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-4GFVE .framer-1rpdief { -webkit-filter: blur(100px); filter: blur(100px); flex: none; height: 676px; left: calc(48.57780256553265% - 596px / 2); overflow: visible; position: absolute; top: calc(51.13553113553115% - 676px / 2); width: 596px; z-index: 0; }\",\".framer-4GFVE .framer-1xka5e0 { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: rgba(26, 166, 241, 0.4); border-bottom-left-radius: 1000px; border-bottom-right-radius: 1000px; border-top-left-radius: 1000px; border-top-right-radius: 1000px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 806px); left: -63px; overflow: hidden; position: absolute; right: -147px; top: -118px; will-change: var(--framer-will-change-override, transform); }\",\".framer-4GFVE .framer-ro3x4b { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: rgba(39, 137, 190, 0.4); border-bottom-left-radius: 1000px; border-bottom-right-radius: 1000px; border-top-left-radius: 1000px; border-top-right-radius: 1000px; bottom: 1px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 381px); left: 66px; overflow: hidden; position: absolute; width: 381px; will-change: var(--framer-will-change-override, transform); }\",\".framer-4GFVE .framer-je6eok { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: rgba(41, 29, 118, 0.3); border-bottom-left-radius: 1000px; border-bottom-right-radius: 1000px; border-top-left-radius: 1000px; border-top-right-radius: 1000px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 409px); left: 0px; overflow: hidden; position: absolute; top: 0px; width: 409px; will-change: var(--framer-will-change-override, transform); }\",\".framer-4GFVE .framer-18px8dv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-4GFVE .framer-1057yi1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 80%; }\",\".framer-4GFVE .framer-yt3i37, .framer-4GFVE .framer-137yxvq, .framer-4GFVE .framer-1wh2gei { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4GFVE .framer-14vmdx1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4GFVE .framer-13gwlrk { --border-bottom-width: 1px; --border-color: rgba(25, 165, 240, 0.3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 6px 14px 0px rgba(0, 22, 36, 0.15), 0px 25px 25px 0px rgba(0, 22, 36, 0.13), 0px 56px 33px 0px rgba(0, 22, 36, 0.08), 0px 99px 39px 0px rgba(0, 22, 36, 0.02), 0px 154px 43px 0px rgba(0, 22, 36, 0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; width: 500px; }\",\".framer-4GFVE .framer-12emzoz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",'.framer-4GFVE .framer-r6c2g3 { --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: rgba(153, 153, 153, 0); --framer-input-font-family: \"Plus Jakarta Sans\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: rgba(253, 253, 253, 0.6); flex: none; height: 40px; position: relative; width: 100%; }',\".framer-4GFVE .framer-10xlfa2-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-4GFVE .framer-l1d1gy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4GFVE .framer-kfg9wu-container { flex: none; height: auto; max-width: 83%; position: relative; width: auto; }\",\".framer-4GFVE .framer-30x9mo { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 72px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-4GFVE .framer-fhy795-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-4GFVE .framer-k5if0l-container { flex: none; height: 112px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 1; }\",'.framer-4GFVE[data-border=\"true\"]::after, .framer-4GFVE [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-4GFVE.framer-1jvkv0l { width: 1200px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-4GFVE.framer-1jvkv0l { width: 810px; } .framer-4GFVE .framer-1naj5n { border-bottom-left-radius: 60px; border-top-right-radius: 60px; gap: 32px; } .framer-4GFVE .framer-1o1vwa5 { padding: 200px 60px 42px 60px; } .framer-4GFVE .framer-1upqscm, .framer-4GFVE .framer-18px8dv, .framer-4GFVE .framer-1057yi1 { width: 100%; } .framer-4GFVE .framer-l1d1gy { gap: 12px; } .framer-4GFVE .framer-kfg9wu-container { max-width: 100%; } .framer-4GFVE .framer-k5if0l-container { height: auto; left: 50%; transform: translateX(-50%); }}\",\"@media (max-width: 809px) { .framer-4GFVE.framer-1jvkv0l { width: 390px; } .framer-4GFVE .framer-1naj5n { border-bottom-left-radius: 60px; border-top-right-radius: 60px; gap: 32px; } .framer-4GFVE .framer-1o1vwa5 { gap: 36px; padding: 150px 20px 42px 20px; } .framer-4GFVE .framer-1upqscm, .framer-4GFVE .framer-18px8dv { width: 100%; } .framer-4GFVE .framer-1onca9s { bottom: -54px; left: -27px; right: -27px; top: -2px; } .framer-4GFVE .framer-1rpdief { bottom: -97px; height: unset; left: -51px; right: -39px; top: -88px; width: unset; } .framer-4GFVE .framer-1xka5e0 { height: var(--framer-aspect-ratio-supported, 705px); } .framer-4GFVE .framer-1057yi1 { gap: 16px; width: 100%; } .framer-4GFVE .framer-13gwlrk { max-width: 300px; padding: 8px; width: 100%; } .framer-4GFVE .framer-r6c2g3 { --framer-input-font-size: 14px; --framer-input-padding: 8px; } .framer-4GFVE .framer-10xlfa2-container { height: 57px; width: 105px; } .framer-4GFVE .framer-l1d1gy { gap: 12px; } .framer-4GFVE .framer-kfg9wu-container { max-width: 100%; } .framer-4GFVE .framer-30x9mo { padding: 32px 0px 0px 0px; } .framer-4GFVE .framer-k5if0l-container { height: auto; left: 50%; transform: translateX(-50%); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4393.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lC7Uzk4re\":{\"layout\":[\"fixed\",\"auto\"]},\"glQBwlFlO\":{\"layout\":[\"fixed\",\"auto\"]},\"hvaRIXt0b\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerJGIdC9NU9=withCSS(Component,css,\"framer-4GFVE\");export default FramerJGIdC9NU9;FramerJGIdC9NU9.displayName=\"Research Papers\";FramerJGIdC9NU9.defaultProps={height:4393.5,width:1440};addFonts(FramerJGIdC9NU9,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNTxXUEKi4Rw.woff2\",weight:\"800\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TX2N2Q6ZO2LBO34H72H5RVJTBQFGU4GV/ZICVNTLTT4V7CCIJPWNY363N6LIP2AET/OUUAK2X2MEGEKC6ULA4CFSBY4PE5EGPV.woff2\",weight:\"400\"}]},...Button5Fonts,...ResearchPapersTableFonts,...FooterFonts,...NavbarFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJGIdC9NU9\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lC7Uzk4re\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"glQBwlFlO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hvaRIXt0b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"4393.5\",\"framerIntrinsicWidth\":\"1440\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fontFamily", "ResearchPapersTable", "props", "API_BASE_URL", "data", "setData", "ye", "loading", "setLoading", "error", "setError", "categories", "setCategories", "startDate", "setStartDate", "endDate", "setEndDate", "isMobile", "setIsMobile", "currentPage", "setCurrentPage", "itemsPerPage", "setItemsPerPage", "ue", "window", "handleResize", "parseUrlDate", "urlDate", "day", "month", "year", "params", "urlStartDate", "urlEndDate", "formatDate", "newUrl", "date", "fetchData", "url", "response", "result", "sortedData", "a", "b", "uniqueCategories", "paper", "err", "timer", "totalPages", "handlePageChange", "page", "handlePrevPage", "handleNextPage", "handleItemsPerPageChange", "e", "paginatedData", "getPageNumbers", "pageNumbers", "maxPageButtons", "i", "startPage", "endPage", "u", "filterContainerStyle", "p", "filterStyle", "loadingContainerStyle", "loadingSpinnerStyle", "errorStyle", "cardContainerStyle", "index", "cardStyle", "cardTitleStyle", "cardDescriptionStyle", "cardMetaStyle", "linkStyle", "tableStyle", "tableHeaderStyle", "header", "headerCellStyle", "tableRowStyle", "snColumnStyle", "titleColumnStyle", "cellStyle", "highlightColumnStyle", "authorColumnStyle", "scoreColumnStyle", "paginationButtonStyle", "paginationActiveStyle", "categoryColumnStyle", "addPropertyControls", "ControlType", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "RichTextWithFX", "withFX", "RichText2", "Button5Fonts", "getFonts", "MDiO5Ko_5_default", "FormContainerWithFX", "FormContainer", "ResearchPapersTableFonts", "ResearchPapersTable", "MotionDivWithFX", "motion", "FooterFonts", "WCp29TwIK_default", "NavbarFonts", "IeppLEON0_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "transition3", "transition4", "formVariants", "form", "variants", "currentVariant", "transition5", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "getLoadingLazyAtYPosition", "ImageWithOptimizedAppearEffect", "x", "RichTextWithFX", "FormContainerWithFX", "formState", "l", "FormPlainTextInput2", "ComponentViewportProvider", "Container", "MDiO5Ko_5_default", "MotionDivWithFX", "ResearchPapersTable", "WCp29TwIK_default", "IeppLEON0_default", "css", "FramerJGIdC9NU9", "withCSS", "JGIdC9NU9_default", "addFonts", "Button5Fonts", "ResearchPapersTableFonts", "FooterFonts", "NavbarFonts", "__FramerMetadata__"]
}
