File size: 1,481 Bytes
cd6f98e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import Image from "next/image";
import React from "react";

import AppHead from "../components/AppHead";
import Backing from "../components/landing/Backing";
import FooterLinks from "../components/landing/FooterLinks";
import Hero from "../components/landing/Hero";
import FadeIn from "../components/motions/FadeIn";
import NavBar from "../components/NavBar";

const HomePage = () => {
  return (
    <div className="min-w-screen mx-6 grid min-h-screen place-items-center bg-black py-2 selection:bg-purple-700/25 lg:overflow-x-hidden lg:overflow-y-hidden">
      <AppHead
        title="Reworkd"
        ogTitle="Automate core business workflows with the help of AI Agents"
      />
      <div className="absolute -z-50  h-full w-full bg-black" />
      <Image src="/stars.svg" alt="stars" fill className="pointer-events-none absolute invert-0" />

      <div className="flex h-full max-w-[1440px] flex-col justify-between">
        <NavBar />
        <main className="mx-auto sm:px-16">
          <Hero />
        </main>
        <FadeIn initialY={30} duration={3}>
          <footer className="flex flex-col items-center gap-2 pb-4 lg:flex-row">
            <Backing className="flex-grow" />
            <FooterLinks />
            <div className="font-inter text-xs font-normal text-white/30 lg:order-first lg:text-sm">
              &copy; 2023 Reworkd AI, Inc.
            </div>
          </footer>
        </FadeIn>
      </div>
    </div>
  );
};

export default HomePage;