aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2024-09-17 14:40:16 -0400
committersowgro <tpoke.ferrari@gmail.com>2024-09-17 14:40:16 -0400
commit40466da98a854f61abcdb916300547ec529d7a49 (patch)
treedb3d63158bbb117b3300e685176f6c4dbd006658
parentdce718c8293900c898c3621ac50dc27cd83000dc (diff)
downloadbookmarks-home-40466da98a854f61abcdb916300547ec529d7a49.tar.gz
bookmarks-home-40466da98a854f61abcdb916300547ec529d7a49.tar.bz2
bookmarks-home-40466da98a854f61abcdb916300547ec529d7a49.zip
Add models to repo
-rw-r--r--README.md6
-rw-r--r--bookmark-object-model.pngbin0 -> 30359 bytes
-rw-r--r--index.html14
-rw-r--r--style.css11
-rw-r--r--widgets.pngbin0 -> 67701 bytes
-rw-r--r--widgets.tsx19
6 files changed, 23 insertions, 27 deletions
diff --git a/README.md b/README.md
index 2155a2e..3f0dcf5 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,6 @@
# bookmarks-home
+beyond the bar
-[Chrome Bookmarks API](https://developer.chrome.com/docs/extensions/reference/api/bookmarks)
-[React Docs](https://react.dev/)
+### Development resources
+- [Chrome Bookmarks API](https://developer.chrome.com/docs/extensions/reference/api/bookmarks)
+- [React Docs](https://react.dev/) \ No newline at end of file
diff --git a/bookmark-object-model.png b/bookmark-object-model.png
new file mode 100644
index 0000000..407ef25
--- /dev/null
+++ b/bookmark-object-model.png
Binary files differ
diff --git a/index.html b/index.html
deleted file mode 100644
index a13fe8a..0000000
--- a/index.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-<!DOCTYPE html>
-<head>
- <title>Index Site</title>
- <link rel="stylesheet" href="style.css">
-</head>
-<body>
- <div id="Topbar">
- <a href="https://sowgro.net/">sowgro</a>
- <a href="https://rit.edu">RIT</a>
- </div>
-
-
-</body>
diff --git a/style.css b/style.css
deleted file mode 100644
index 2fc9aee..0000000
--- a/style.css
+++ /dev/null
@@ -1,11 +0,0 @@
-body{
- font-size: 15;
- font-family: 'Courier New', Courier, monospace;
-}
-
-#Topbar {
- color: white;
- display: flex;
- flex-direction: row;
- background-color: black;
-} \ No newline at end of file
diff --git a/widgets.png b/widgets.png
new file mode 100644
index 0000000..e8d97bd
--- /dev/null
+++ b/widgets.png
Binary files differ
diff --git a/widgets.tsx b/widgets.tsx
new file mode 100644
index 0000000..0c84871
--- /dev/null
+++ b/widgets.tsx
@@ -0,0 +1,19 @@
+function bookmark(url: string, img: string, name: string) {
+ return(
+ <a class="bookmark" href={url}>
+ <img src={img}></img>
+ <span>{name}</span>
+ </a>
+ );
+}
+
+function folder(children: any, name: string) {
+ return(
+ <div class="folder">
+ <span>{name}</span>
+ <div>
+ {children}
+ </div>
+ </div>
+ )
+} \ No newline at end of file