You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
456 B
18 lines
456 B
import styles from './home-section-blog.module.scss';
|
|
|
|
/* eslint-disable-next-line */
|
|
export interface HomeSectionBlogProps {}
|
|
|
|
export function HomeSectionBlog(props: HomeSectionBlogProps) {
|
|
return (
|
|
<>
|
|
<section className="container max-w-6xl relative mx-auto relative flex row mb-10 h-auto">
|
|
<div className="md:w-6/12">a</div>
|
|
<div className="md:w-6/12">b</div>
|
|
</section>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default HomeSectionBlog;
|