File size: 812 Bytes
5301c48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
'use client';

import { motion } from "framer-motion";
import { Book } from 'lucide-react';

export function AnimatedBlogHeader() {
  return (
    <motion.section 
      initial={{ opacity: 0, y: 20 }}
      animate={{ opacity: 1, y: 0 }}
      transition={{ duration: 0.5 }}
      className="text-center py-16 mb-8"
    >
      <div className="flex items-center justify-center space-x-4 mb-6">
        <div className="bg-pink-100 p-4 rounded-full">
          <Book className="h-8 w-8 text-[#DB2777]" />
        </div>
        <h1 className="text-5xl font-bold text-[#DB2777]">
          Our Blog
        </h1>
      </div>
      <p className="text-xl text-gray-600 max-w-2xl mx-auto">
        Explore our latest thoughts, ideas, and insights about synthetic data and AI.
      </p>
    </motion.section>
  );
}