mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-18 15:09:34 +00:00
73 lines
3.5 KiB
JavaScript
73 lines
3.5 KiB
JavaScript
/* eslint-disable @next/next/no-img-element */
|
|
import LazyImage from '@/components/LazyImage'
|
|
import { siteConfig } from '@/lib/config'
|
|
import CONFIG from '../config'
|
|
import Link from 'next/link'
|
|
|
|
/**
|
|
* 英雄大图区块
|
|
*/
|
|
export const Hero = props => {
|
|
const config = props?.NOTION_CONFIG || CONFIG
|
|
const pageCover = props?.siteInfo?.pageCover
|
|
const bannerImage = siteConfig('PROXIO_HERO_BANNER_IMAGE', null, config) || pageCover
|
|
const bannerIframe = siteConfig('PROXIO_HERO_BANNER_IFRAME_URL',null,config)
|
|
return (
|
|
<>
|
|
{/* <!-- ====== Hero Section Start --> */}
|
|
<div
|
|
id='home'
|
|
className='h-screen relative overflow-hidden bg-primary '>
|
|
{/* 横幅图片 */}
|
|
{!bannerIframe && bannerImage && (
|
|
<LazyImage
|
|
priority
|
|
className='w-full object-cover absolute h-screen left-0 top-0 pointer-events-none'
|
|
src={bannerImage} />
|
|
)}
|
|
<iframe src={bannerIframe} className='w-full absolute h-screen left-0 top-0 pointer-events-none' />
|
|
{/* 阴影遮罩 */}
|
|
<div className='h-1/3 w-full absolute left-0 bottom-0 z-10'>
|
|
<div className='h-full w-full absolute group-hover:opacity-100 transition-all duration-1000
|
|
bg-gradient-to-b from-transparent to-white dark:to-black'/>
|
|
</div>
|
|
|
|
</div>
|
|
{/* 文字标题等 */}
|
|
<div className='w-full pb-15 dark:text-white'>
|
|
<div className='container -mx-4 flex flex-wrap items-center'>
|
|
<div className='w-full px-4'>
|
|
<div
|
|
className='hero-content wow fadeInUp mx-auto max-w-[780px] text-center'
|
|
data-wow-delay='0.5s'>
|
|
{/* 主标题 */}
|
|
<h1 className='mb-6 text-3xl font-bold leading-snug sm:text-4xl sm:leading-snug lg:text-5xl lg:leading-[1.2]'>
|
|
{siteConfig('PROXIO_HERO_TITLE_1', null, config)}
|
|
</h1>
|
|
{/* 次标题 */}
|
|
<p className='mx-auto mb-9 max-w-[600px] text-base font-medium sm:text-lg sm:leading-[1.44]'>
|
|
{siteConfig('PROXIO_HERO_TITLE_2', null, config)}
|
|
</p>
|
|
{/* 按钮组 */}
|
|
<ul className='mb-10 flex flex-wrap items-center justify-center gap-5'>
|
|
{siteConfig('PROXIO_HERO_BUTTON_1_TEXT', null, config) && (
|
|
<li>
|
|
<Link
|
|
href={siteConfig('PROXIO_HERO_BUTTON_1_URL', '')}
|
|
className='inline-flex items-center justify-center rounded-2xl bg-white px-7 py-[14px] text-center text-base font-medium text-dark shadow-1 transition duration-300 ease-in-out hover:bg-gray-2'>
|
|
{siteConfig('PROXIO_HERO_BUTTON_1_TEXT', null, config)}
|
|
</Link>
|
|
</li>
|
|
)}
|
|
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
{/* <!-- ====== Hero Section End --> */}
|
|
</>
|
|
)
|
|
}
|