feat: create Partnership and Blog functional components

This commit is contained in:
hkiett265
2026-04-14 11:40:55 +07:00
parent ad68b7d8c4
commit 4bfad8481b
10 changed files with 511 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import NewsletterWidget from "./NewsletterWidget";
import ResearcherSpotlight from "./ResearcherSpotlight";
import UpcomingEvents from "./UpcomingEvents";
export default function BlogSidebar() {
return (
<aside className="w-full lg:w-[400px] shrink-0 space-y-8">
<NewsletterWidget />
<ResearcherSpotlight />
<UpcomingEvents />
</aside>
);
}