SwapIt / app / page.jsx
page.jsx
Raw
// import {schema} from '@utils/database.mjs';

import Feed from "@components/Feed";
const Home = () => {

  return (
    <>
      <p>SwapIt is a web app that lets you trade your used books and stationery with others who want them. Just snap, post, browse, and swap. SwapIt helps you save money, reduce waste, and share knowledge. 📚</p>
      <Feed
      />

    </>
  )
}

export default Home;