35 lines
1022 B
TypeScript
35 lines
1022 B
TypeScript
|
|
import Countdown from '@/components/elements/Countdown'
|
|
import Layout from "@/components/layout/Layout"
|
|
import Link from "next/link"
|
|
import Section1 from '@/components/tamilculture/bridal-makeup/Section1'
|
|
import Section2 from '@/components/tamilculture/bridal-makeup/Section2'
|
|
|
|
|
|
export default function BridalMekeup() {
|
|
|
|
return (
|
|
<>
|
|
|
|
<Layout headerStyle={1} footerStyle={1}>
|
|
<div>
|
|
<div className="inner-page-header" style={{ backgroundImage: 'url(/assets/img/bg/header-bg6.png)' }}>
|
|
<div className="container">
|
|
<div className="row">
|
|
<div className="col-lg-5 m-auto">
|
|
<div className="heading1 text-center">
|
|
<h1>Bridal Make Up</h1>
|
|
<div className="space20" />
|
|
<Link href="/">Home <i className="fa-solid fa-angle-right" /> <span>Tamil Culture</span></Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<Section1 />
|
|
<Section2 />
|
|
</div>
|
|
</Layout>
|
|
</>
|
|
)
|
|
} |