From eb2d967fd40d1476d083afe7cde7df946dc56d04 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 29 Apr 2025 13:14:05 -0400 Subject: [PATCH] feat: add required public files for React build --- frontend/public/index.html | 20 ++++++++++++++++++++ frontend/public/manifest.json | 25 +++++++++++++++++++++++++ frontend/public/robots.txt | 3 +++ 3 files changed, 48 insertions(+) create mode 100644 frontend/public/index.html create mode 100644 frontend/public/manifest.json create mode 100644 frontend/public/robots.txt diff --git a/frontend/public/index.html b/frontend/public/index.html new file mode 100644 index 0000000..9de2be7 --- /dev/null +++ b/frontend/public/index.html @@ -0,0 +1,20 @@ + + + + + + + + + + + RSVP Manager + + + +
+ + \ No newline at end of file diff --git a/frontend/public/manifest.json b/frontend/public/manifest.json new file mode 100644 index 0000000..8fc0c0f --- /dev/null +++ b/frontend/public/manifest.json @@ -0,0 +1,25 @@ +{ + "short_name": "RSVP Manager", + "name": "RSVP Manager - Event Management System", + "icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + }, + { + "src": "logo192.png", + "type": "image/png", + "sizes": "192x192" + }, + { + "src": "logo512.png", + "type": "image/png", + "sizes": "512x512" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} \ No newline at end of file diff --git a/frontend/public/robots.txt b/frontend/public/robots.txt new file mode 100644 index 0000000..16199a5 --- /dev/null +++ b/frontend/public/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: \ No newline at end of file