Skip to content

Commit

Permalink
On hold
Browse files Browse the repository at this point in the history
  • Loading branch information
william-herring committed May 3, 2022
1 parent 971d7fc commit 8cd08a5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
![Stars](https://img.shields.io/github/stars/william-herring/liveed)
![Issues](https://img.shields.io/github/issues/william-herring/liveed)

<p style="color: red; font-weight: bold">Currently on hold for ~3 months to set aside time for work on Science Talent Search project.</p>

Liveed is a platform for sharing live update feeds. This site is built with:
- Next.js
- TypeScript
Expand Down
1 change: 0 additions & 1 deletion components/TextEditor.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React, { useState } from "react"
import prisma from "../lib/prisma"

interface TextEditorProps {
onDelete: VoidFunction
Expand Down
6 changes: 3 additions & 3 deletions pages/create.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ const CreateFeed: NextPage = () => {
{ title: 'Home', url: '/', active: true },
{ title: 'Trending', url: '/trending', active: false },
{ title: 'Watchlist', url: '/watchlist', active: false }
]} title='Create Post' />
]} title='Create Feed' />

<div className='flex flex-col items-center mt-24 p-6'>
<input className='focus:outline-none font-semibold mb-3 w-full' placeholder='Title' type='text' onChange={(e) => setTitle(e.target.value)} />
<div className='flex flex-col items-center mt-24 p-6 mb-10 border-b-2 pb-6'>
<input className='focus:outline-none font-semibold mb-3 w-full text-2xl' placeholder='Title' type='text' onChange={(e) => setTitle(e.target.value)} />
</div>
</div>
)
Expand Down

0 comments on commit 8cd08a5

Please sign in to comment.