17 lines
246 B
TypeScript
17 lines
246 B
TypeScript
import Countdown from '@/components/elements/Countdown'
|
|
|
|
|
|
export default function Section2() {
|
|
return (
|
|
<>
|
|
|
|
<div className="others5-section-area">
|
|
<div className="container">
|
|
<Countdown style={2} />
|
|
</div>
|
|
</div>
|
|
|
|
</>
|
|
)
|
|
}
|