Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions public/images/aws/cfn.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions public/images/aws/vpc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
11 changes: 4 additions & 7 deletions src/components/ApplicationsShowcase.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ import { getImage } from 'astro:assets';
// Import data
import applicationsData from '../data/developerhub/applications.json';
import services from '../data/developerhub/services.json';
import platforms from '../data/developerhub/platforms.json';
import deployments from '../data/developerhub/deployments.json';
import complexities from '../data/developerhub/complexities.json';
import integrations from '../data/developerhub/integrations.json';

const applications = applicationsData.applications;

Expand All @@ -24,7 +22,8 @@ const applicationsUpdated = await Promise.all(
const optimizedLeadImage = await getImage({
src: images[imagePath](),
format: 'png',
width: 372,
width: 800,
quality: 90,
});
updatedApplication.teaser = optimizedLeadImage.src;
}
Expand All @@ -36,8 +35,6 @@ const applicationsUpdated = await Promise.all(
<ApplicationsShowcase
applications={applicationsUpdated}
services={services}
platforms={platforms}
deployments={deployments}
complexities={complexities}
integrations={integrations}
client:load
/>
2 changes: 1 addition & 1 deletion src/components/DynamicTutorials.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { getImage } from 'astro:assets';
// Import data for filters
import services from '../data/developerhub/services.json';
import platforms from '../data/developerhub/platforms.json';
import deployments from '../data/developerhub/deployments.json';
import deployments from '../data/developerhub/integrations.json';

const images = import.meta.glob<{ default: ImageMetadata }>(
'/src/assets/images/aws/tutorials/*.{jpeg,jpg,png,gif}'
Expand Down
Loading