From 40466da98a854f61abcdb916300547ec529d7a49 Mon Sep 17 00:00:00 2001 From: sowgro Date: Tue, 17 Sep 2024 14:40:16 -0400 Subject: Add models to repo --- README.md | 6 ++++-- bookmark-object-model.png | Bin 0 -> 30359 bytes index.html | 14 -------------- style.css | 11 ----------- widgets.png | Bin 0 -> 67701 bytes widgets.tsx | 19 +++++++++++++++++++ 6 files changed, 23 insertions(+), 27 deletions(-) create mode 100644 bookmark-object-model.png delete mode 100644 index.html delete mode 100644 style.css create mode 100644 widgets.png create mode 100644 widgets.tsx 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 Binary files /dev/null and b/bookmark-object-model.png 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 @@ - - - - Index Site - - - -
- sowgro - RIT -
- - - 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 Binary files /dev/null and b/widgets.png 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( + + + {name} + + ); +} + +function folder(children: any, name: string) { + return( +
+ {name} +
+ {children} +
+
+ ) +} \ No newline at end of file -- cgit v1.2.3