this repo has no description www.baileykane.co/
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Temporarily disable Feed content to simplify build / merging

BK610 eb599e67 5ba8e0a0

+19 -15
+19 -15
pages/feed.js
··· 1 - import { Component } from "react"; 2 1 import BaseLayout from "../components/BaseLayout"; 3 2 import PageHeading from "../components/PageHeading"; 4 - import Link from "next/link"; 5 3 6 4 import { AtpAgent } from "@atproto/api"; 7 - import { OathClient } from "@atproto/oauth-client"; 5 + // import { OAuthClient } from "@atproto/oauth-client"; 8 6 9 - const agent = new AtpAgent({ service: "https://baileykane.co" }); 7 + function Feed() { 8 + // const agent = new AtpAgent({ service: "https://baileykane.co/feed" }); 9 + // const oauthClient = new OAuthClient({}); 10 10 11 - export default class Feed extends Component { 12 - render() { 13 - return ( 14 - <BaseLayout titleText={"Feed"}> 15 - <div> 16 - <PageHeading>Feed</PageHeading> 17 - <div className="col-span-2 sm:col-span-1 prose dark:prose-invert"></div> 18 - </div> 19 - </BaseLayout> 20 - ); 21 - } 11 + // await agent.login({ 12 + // identifier: "baileykane.co", 13 + // password: "kbw8fef2hfc3uyu-WVA", 14 + // }); 15 + 16 + return ( 17 + <BaseLayout titleText={"Feed"}> 18 + <div> 19 + <PageHeading>Feed</PageHeading> 20 + <div className="col-span-2 sm:col-span-1 prose dark:prose-invert"></div> 21 + </div> 22 + </BaseLayout> 23 + ); 22 24 } 25 + 26 + export default Feed;