From 68f47992a0ecd5ff41f2f313f76966aef1b6c7da Mon Sep 17 00:00:00 2001
From: Kabir <44284877+kabir0x23@users.noreply.github.com>
Date: Fri, 29 Jul 2022 12:15:13 +0530
Subject: [PATCH] write-ups
---
.../Resources/WriteUps/WriteUps.jsx | 36 +++++++++++--
.../Resources/WriteUps/WriteUpsElements.jsx | 53 ++++++++++++++++++-
2 files changed, 84 insertions(+), 5 deletions(-)
diff --git a/src/components/Resources/WriteUps/WriteUps.jsx b/src/components/Resources/WriteUps/WriteUps.jsx
index 87fac2f2..b581e9cf 100644
--- a/src/components/Resources/WriteUps/WriteUps.jsx
+++ b/src/components/Resources/WriteUps/WriteUps.jsx
@@ -1,13 +1,41 @@
import React from 'react';
-import {Heading} from './WriteUpsElements';
+import {Section, AuthorImage, AuthorUsername, Date,Content, Heading, Paragraph, Image, Tag, MinRead, Bookmark} from './WriteUpsElements';
+
+import {BsBookmarkPlus, BsBookmarkCheck, BsBookmarkDash} from 'react-icons/bs';
+
const WriteUps = () => {
return (
-
+
+
+
+ Steiner255
+
+
+ . 5 Days Ago
+
+
+
- Write-Ups
+ $$$ bounty in less 3 minutes from a google dork
-
+ ~ Hi Bug Bounty Hunters & CyberSecurity folks!!! It’s been long since i dropped a bug bounty writeup. Got lots of them in store, and i will be sharing them soonest possible. Just stay tuned, remember: Practice Make....
+
+
+
+
+
+ Bug Bounty
+
+
+ 2 min read
+
+
+
+
+
+
+
);
};
diff --git a/src/components/Resources/WriteUps/WriteUpsElements.jsx b/src/components/Resources/WriteUps/WriteUpsElements.jsx
index a31a87be..311cdd50 100644
--- a/src/components/Resources/WriteUps/WriteUpsElements.jsx
+++ b/src/components/Resources/WriteUps/WriteUpsElements.jsx
@@ -1,5 +1,56 @@
import styled from "styled-components";
+export const Section = styled.div`
+ margin: 200px 100px;
+ color: #fff;
+`
+
+export const AuthorImage = styled.img`
+ display: inline-block;
+ width: 30px;
+ height: 30px;
+ border-radius: 50%;
+`
+
+export const AuthorUsername = styled.div`
+ display: inline-block;
+ margin: 10px 10px 20px 10px;
+
+`
+
+export const Date = styled.div`
+ display: inline-block;
+
+`
+
+export const Content = styled.div`
+ width: 70%;
+`
export const Heading = styled.h1`
- font-size: 2.5rem;
+
+`
+
+export const Paragraph = styled.p`
+ display: inline-block;
+`
+
+export const Image = styled.div`
+ width: 30%;
+ display: inline-block;
+
+`
+
+export const Tag = styled.button`
+ border-radius: 5px;
+ border-color: #2F80ED;
+ border-style: solid;
+ font-size: 20px;
+ border-width: 1px;
+
+`
+
+export const MinRead = styled.div`
+`
+
+export const Bookmark = styled.div`
`
\ No newline at end of file