import { blogs9 } from "@/data/blogs"; import React from "react"; import Image from "next/image"; import Link from "next/link"; export default function Blog() { return ( <> {/* End Background Shape */}

Our Blog

Check the latest news about our company in our blog.

There are three kinds of web developer specialization front-end developer, back-end developer, and full-stack developer.

Our blog
{/* Blog Posts Grid */}
{/* Post Item */} {blogs9.map((elm: any, i: number) => (
Add Image Description

{elm.title}

{elm.intro}
))} {/* End Post Item */}
{/* End Blog Posts Grid */}
); }