mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-01 20:23:36 +00:00
feat: update application icons and add marketing assets
- Replaced the application icon in package.json with a larger version for better visibility. - Added a new logo image file `logo_larger.png` to the public directory. - Introduced a Dockerfile for the marketing section to serve static files using Nginx. - Created a new `index.html` file for the marketing site, featuring a responsive layout and sections for features and technology stack.
This commit is contained in:
@@ -107,7 +107,7 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
"icon": "public/logo.png"
|
||||
"icon": "public/logo_larger.png"
|
||||
},
|
||||
"win": {
|
||||
"target": [
|
||||
@@ -118,7 +118,7 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
"icon": "public/logo.png"
|
||||
"icon": "public/logo_larger.png"
|
||||
},
|
||||
"linux": {
|
||||
"target": [
|
||||
@@ -136,7 +136,7 @@
|
||||
}
|
||||
],
|
||||
"category": "Development",
|
||||
"icon": "public/logo.png",
|
||||
"icon": "public/logo_larger.png",
|
||||
"maintainer": "webdevcody@gmail.com"
|
||||
},
|
||||
"nsis": {
|
||||
|
||||
BIN
app/public/logo_larger.png
Normal file
BIN
app/public/logo_larger.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 262 KiB |
10
marketing/Dockerfile
Normal file
10
marketing/Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM nginx:alpine
|
||||
|
||||
# Copy the public directory to nginx's html directory
|
||||
COPY public/ /usr/share/nginx/html/
|
||||
|
||||
# Expose port 80
|
||||
EXPOSE 80
|
||||
|
||||
# Start nginx
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
Reference in New Issue
Block a user