gbowne1 / gbowne1site_react

React version of gbowne1 site
GNU General Public License v3.0
4 stars 12 forks source link

#14 done #26

Closed k-deepak04 closed 1 year ago

k-deepak04 commented 1 year ago

Previous vs New Screenshot 2023-04-22 235006 Screenshot 2023-04-23 004915 fixed the footer to bottom of the page removed the color on hover and added color icons.

gbowne1 commented 1 year ago

Make me a blog page @k-deepak04 I have like 5 articles to get put up soon.

I pushed up changes to Blog.jsx and Editor.jsx. It should look a bunch like the editor on Screenshot 2023-04-22 at 12-25-17 React Editor Component

Also, It's really hard to see the container around the Contact Me section. A gray background might look nice there.. or something less white.

gbowne1 commented 1 year ago

I was thinking of something like:

import React from "react";
import "../Blog.css/";

class SideBar extends React.Component {
    render() {
        return (
            <div className="Blog-container">
                <div className="Blog-header">
                    <h3 className="Blogr-title">Blog</h3>
                                              <Blog>
                                                     <Post>
                                                          <Editor>
                                                          </Editor>
                                                     </Post>
                                              </Blog>
                </div>
            </div>
        );
    }
}

export default Blog;