Skip to content

Commit 36e851e

Browse files
committed
added blog changes and pushing google doc
1 parent 1ac9450 commit 36e851e

8 files changed

Lines changed: 52 additions & 38 deletions

File tree

93.4 KB
Loading
73.7 KB
Loading

blog/google-icon-update/index.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ meta:
2222
- property: "og:url"
2323
content: "https://www.recodehive.com/blog/google-icon-update"
2424
- property: "og:image"
25-
content: "./images/cover.png"
25+
content: "./assets/cover-google-icon.jpg"
2626
- name: "twitter:card"
2727
content: "summary_large_image"
2828
- name: "twitter:title"
2929
content: "Google Just Changed Every Workspace Icon: What Actually Changed and Why It Took Six Years"
3030
- name: "twitter:description"
3131
content: "Google Changed Workspace Icon after 6 years"
3232
- name: "twitter:image"
33-
content: "./images/cover.png"
33+
content: "./assets/cover-google-icon.jpg"
3434
---
3535

3636
import Tabs from '@theme/Tabs';
@@ -152,11 +152,14 @@ My honest take: some of the new icons are significantly better, Drive and Calend
152152

153153
## Does It Actually Solve the Problem?
154154

155-
Yes. Partially.
155+
<span style={{color: 'red'}}> **Yes. Partially. </span>
156156

157157
The core complaint for five years was that all the icons look the same. That complaint is addressed. Calendar is now blue. Drive is now gradient-triangle. Gmail is now warm red-pink. Each app has a visual identity that survives a glance rather than requiring a read.
158158

159159
What is not addressed is the deeper question of whether icon design is even the right layer to solve the problem at. The real confusion in a modern Google workflow is not which icon to click. It is which Google product to use for which task. Should this document live in Drive or Sites? Should this conversation happen in Chat or Gmail? Should this meeting be in Meet or Calendar notes?
160+
<BrowserWindow url="https://github.com/recodehive/recode-website/issues" bodyStyle={{padding: 0}}>
161+
[![Github](./assets/11-google-new-design-changes.jpg)]()
162+
</BrowserWindow>
160163

161164
Icon legibility is a surface-level fix for a suite that has genuine overlap and redundancy problems underneath. The new icons will help you click the right app faster. They will not help you decide which app you actually need.
162165

@@ -170,7 +173,7 @@ Google changing its icons is a small thing in isolation. But it is interesting a
170173

171174
Companies only fix long-standing UX complaints when something else is changing around them. The gradient design language, the AI product push, Google I/O timing, the Workspace positioning against Microsoft 365 and Microsoft Copilot. The icon redesign is a small piece of a larger repositioning story that Google is telling right now.
172175

173-
Whether the new icons are beautiful or not matters less than whether they work. And by the only measure that actually counts, distinguishing one app from another in half a second, the 2026 redesign works better than the 2020 one did.
176+
Whether the new icons are beautiful or not matters less than whether they work. And by the only measure that actually counts, distinguishing one app from another in half a second, <span style={{color: 'red'}}> **the 2026 redesign works better than the 2020 one did.**</span>
174177

175178

176179

docs/assets/blog-14-new-issue.png

17.7 KB
Loading

docs/getting_started.md

Lines changed: 39 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,8 @@ Google changing its icons is a small thing in isolation. But it is interesting a
268268
---
269269
**About the Author**
270270
Sanjay is a Data Engineer focused on building modern data platforms and writing about technology at RecodeHive. He writes about data engineering, cloud architecture, and the tech decisions that actually affect people's daily work.
271+
272+
<GiscusComments/>
271273
```
272274

273275
:::info
@@ -323,24 +325,22 @@ Use `##` and `###` headings to structure your content.
323325

324326
#### Bulleted Summary Section (Required)
325327

326-
Every techincal explanation blog must begin with a bulleted summary right after the intro paragraph. This helps readers quickly understand what they'll learn.
328+
Every techincal explanation blog eg: `how to run codeql on GitHub` must begin with a bulleted summary right after the intro paragraph. This helps readers quickly understand what they'll learn.
327329

328330
```md
329331
**What you'll learn in this post:**
330332
- How to set up X from scratch
331333
- How to configure Y for production
332334
- Common pitfalls and how to avoid them
333335
```
334-
335-
<BrowserWindow url="https://github.com/recodehive/recode-website/issues" bodyStyle={{padding: 0}}>
336-
[![Github](assets/blog-09-new-issue.png)](https://github.com/recodehive/recode-website/issues)
337-
</BrowserWindow>
338336
</TabItem>
337+
339338

340339
<TabItem value="Add code blocks" label="Add code blocks">
341340
#### Named Code Blocks (Required)
342341

343342
Always label code blocks with a filename so readers know exactly what file they are editing:
343+
Once you copy paste this block it will appear exactly like this for the users.
344344

345345
````md
346346
```java title="Sample.java"
@@ -351,9 +351,7 @@ public class Hello {
351351
}
352352
```
353353
````
354-
<BrowserWindow url="https://github.com/recodehive/recode-website/issues" bodyStyle={{padding: 0}}>
355-
[![Github](assets/blog-10-new-issue.png)](https://github.com/recodehive/recode-website/issues)
356-
</BrowserWindow>
354+
357355
</TabItem>
358356

359357
<TabItem value="Query + Output: Use Tabs" label="Query + Output: Use Tabs">
@@ -372,37 +370,50 @@ Then structure your query + output like this:
372370

373371
````md
374372
<Tabs>
375-
<TabItem value="Query">
373+
<TabItem value="SQL Table" label="SQL Table">
374+
```sql title="Friends"
375+
| id | name | username |
376+
|----|-----------------|------------------|
377+
| 1 | John Doe | @johndoe |
378+
| 2 | Jane Smith | @janesmith |
379+
| 3 | Bob Johnson | @bobjohnson |
380+
```
381+
</TabItem>
382+
383+
<TabItem value="SQL Code" label="SQL Code">
384+
385+
```sql title="Creating SQL Tables & db. "
386+
387+
-- creating database
388+
CREATE DATABASE my_database;
389+
390+
-- use the database you created
391+
USE my_database;
392+
376393

377-
```sql
378394
-- Create the table
379-
CREATE TABLE friends (
395+
CREATE TABLE friends (
380396
id INT PRIMARY KEY,
381397
name VARCHAR(100),
382398
username VARCHAR(100)
383-
);
399+
);
384400

385-
-- Insert data
386-
INSERT INTO friends (id, name, username) VALUES
387-
(1, 'John Doe', 'johndoe'),
388-
(2, 'Jane Smith', 'janesmith'),
389-
(3, 'Bob Johnson', 'bobjohnson');
390-
```
401+
-- Insert data into the table
402+
INSERT INTO friends (id, name, username) VALUES
403+
(1, 'John Doe', '@johndoe'),
404+
(2, 'Jane Smith', '@janesmith'),
405+
(3, 'Bob Johnson', '@bobjohnson');
391406

392-
</TabItem>
393-
<TabItem value="Output">
394-
395-
| id | name | username |
396-
|----|-------------|-------------|
397-
| 1 | John Doe | johndoe |
398-
| 2 | Jane Smith | janesmith |
399-
| 3 | Bob Johnson | bobjohnson |
407+
```
400408

401409
</TabItem>
410+
402411
</Tabs>
412+
413+
403414
````
404415
<BrowserWindow url="https://github.com/recodehive/recode-website/issues" bodyStyle={{padding: 0}}>
405-
[![Github](assets/blog-10-new-issue.png)](https://github.com/recodehive/recode-website/issues)
416+
[![Github](assets/blog-14-new-issue.png)](https://github.com/recodehive/recode-website/issues)
406417
</BrowserWindow>
407418
</TabItem>
408419

@@ -429,7 +440,7 @@ Especially from an experienced engineers, it will be easy for new genertion code
429440
:::
430441
431442
432-
## Step 11: Add Screenshots and Images
443+
## Step 11: Add Screenshots and Banner
433444
434445
### Recommended Screenshot Dimensions
435446

src/database/blogs/index.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ const blogs: Blog[] = [
1313

1414
{
1515
id: 1,
16-
title: "Land a Job in UI/UX Design",
17-
image: "/img/blogs/04-ux-job-design.png",
16+
title: "New Google Icon Changes",
17+
image: "/img/blogs/cover-google-icon.jpg",
1818
description:
19-
" Are you passionate about design and dreaming of a career in it? Or maybe you are already in the design space and looking to pivot into UI/UX? ",
20-
slug: "ux-ui-design-job",
21-
authors: ["sowmiya-v", "sanjay-kv"],
19+
" Google has unveiled a new icon design that reflects its commitment to simplicity and accessibility. The updated icon features a more modern ",
20+
slug: "google-icon-update",
21+
authors: ["sanjay-kv"],
2222
category: "Design",
23-
tags: ["UX", "UI", "Career", "Job"],
23+
tags: ["UX", "UI", "design", "Job"],
2424
},
2525

2626
{
73.7 KB
Loading

static/img/cover-google-icon.jpg

73.7 KB
Loading

0 commit comments

Comments
 (0)