import React from 'react';
import styles from './FooterComponent.module.css';

const FooterComponent: React.FC = () => {
  return (
    <div className={styles.footerContainer}>
      <h1 className={styles.footerText}>
        turns into this with help from AI 🪄✨
      </h1>
      <div className="aspect-w-16 aspect-h-9 w-full">
                <iframe
                  src="https://docs.google.com/presentation/d/1TspQO8v5B57aPreZTGvrwh72XQ1sZv1P/embed?slide=id.p1"
                  width="100%"
                  height="480"
                  className="w-full"
                ></iframe>
              </div>
    </div>
  );
};

export default FooterComponent;

