forked from UKSOURCE/hailearning.edu.vn
feat: complete publications and research sections and resolve conflicts
This commit is contained in:
24
app/research/page.tsx
Normal file
24
app/research/page.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
import React from 'react';
|
||||
import { Metadata } from 'next';
|
||||
import ResearchHero from '@/app/components/research/ResearchHero';
|
||||
import ResearchSearch from '@/app/components/research/ResearchSearch';
|
||||
import ResearchDomains from '@/app/components/research/ResearchDomains';
|
||||
import ProjectsAndCenters from '@/app/components/research/ProjectsAndCenters';
|
||||
import ResearchResources from '@/app/components/research/ResearchResources';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Research Hub | Liberal University',
|
||||
description: 'Explore our cutting-edge research domains, active projects, and funding calls.',
|
||||
};
|
||||
|
||||
export default function ResearchPage() {
|
||||
return (
|
||||
<div className="research-wrapper">
|
||||
<ResearchHero />
|
||||
<ResearchSearch />
|
||||
<ResearchDomains />
|
||||
<ProjectsAndCenters />
|
||||
<ResearchResources />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user