{"id":2805,"date":"2026-03-25T10:13:47","date_gmt":"2026-03-25T10:13:47","guid":{"rendered":"https:\/\/www.schoolofdesignleeds.com\/ds24\/?p=2805"},"modified":"2026-03-25T10:13:47","modified_gmt":"2026-03-25T10:13:47","slug":"tia-hewitt-brown","status":"publish","type":"post","link":"https:\/\/www.schoolofdesignleeds.com\/ds24\/tia-hewitt-brown\/","title":{"rendered":"Tia Hewitt-Brown"},"content":{"rendered":"<div class=\"sitecontainer\">\n<div class=\"pagecontainer\">\n<h4 class=\"homepage-heading-h4\">Degree Show 2024<\/h4>\n<div class=\"postcontainer\">\n<h1 class=\"thestudentpostname\" id=\"studentpostname\">Tia Hewitt-Brown<\/h1>\n<h3>BA Art and Design<\/h3>\n<p class=\"studentstatement\">Character design and illustrating the worlds that my characters inhabit is the core of my practice. A major reason as to why worldbuilding is an important aspect of my work is because it can tackle real-world socio-economic problems, like racism and misogyny; almost every character I design presents as a woman of colour, like me, and they inhabit a world that allows them to thrive in ways we normally couldn\u2019t.<\/p>\n<div class=\"socialstack\"><span class=\"material-symbols-outlined\">handshake<\/span><a href=\"#\" target=\"_blank\" rel=\"noopener\">Connect with <span id=\"withme\">Tia Hewitt-Brown<\/span><\/a><\/div>\n<p><!--FILE01--><\/p>\n<div class=\"mediafileviewer mfvimages\"><img decoding=\"async\" loading =\"lazy\" data-src=\"https:\/\/www.schoolofdesignleeds.com\/ds24\/wp-content\/uploads\/2024\/06\/tia-hewittbrown-01_Tia-Hewitt-Brown.jpg\" width=\"100%\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" class=\"lazyload\" style=\"--smush-placeholder-width: 1748px; --smush-placeholder-aspect-ratio: 1748\/2480;\" \/><\/p>\n<p class=\"mfv-caption\">This set of work presents audiences with an alternate version of Headingley, where urban design has been taken to the extreme; the old Victorian buildings have been stacked onto each other to form large-scale social housing, which could benefit working class people and provide space for more plant life. The project was heavily inspired by creatives like the RESOLVE Collective and Superstudio, whose primary focus is to use urban design to improve the lives of marginalised young people. This world also takes visual inspiration from the video game Little Nightmares, since the story line also revolves around young people adapting to the harsh environment that they live in.<\/p>\n<\/div>\n<p><!--FILE02--><\/p>\n<div class=\"mediafileviewer mfvimages\"><img decoding=\"async\" loading =\"lazy\" data-src=\"https:\/\/www.schoolofdesignleeds.com\/ds24\/wp-content\/uploads\/2024\/06\/tia-hewittbrown-02_Tia-Hewitt-Brown.jpg\" width=\"100%\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" class=\"lazyload\" style=\"--smush-placeholder-width: 1748px; --smush-placeholder-aspect-ratio: 1748\/2480;\" \/><\/p>\n<p class=\"mfv-caption\">\n<\/div>\n<p><!--FILE03--><\/p>\n<div class=\"mediafileviewer mfvimages\"><img decoding=\"async\" loading =\"lazy\" data-src=\"https:\/\/www.schoolofdesignleeds.com\/ds24\/wp-content\/uploads\/2024\/06\/tia-hewittbrown-03_Tia-Hewitt-Brown.jpg\" width=\"100%\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" class=\"lazyload\" style=\"--smush-placeholder-width: 1748px; --smush-placeholder-aspect-ratio: 1748\/2480;\" \/><\/p>\n<p class=\"mfv-caption\">\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<p><script>\ndocument.getElementById(\"withme\").innerHTML = document.getElementById(\"studentpostname\").innerHTML;\ndocument.addEventListener(\"scroll\", function(){\nvar sitedescription = document.querySelector(\".site-description\");\nvar studenttitle = document.getElementById(\"studentpostname\");\nif(window.pageYOffset > 100){\nsitedescription.classList.add(\"highlightstudentname\");\nsitedescription.innerHTML = studenttitle.innerHTML;\n}\nif(window.pageYOffset < 100){\nsitedescription.classList.remove(\"highlightstudentname\");\nsitedescription.innerHTML = \"School of Design, University of Leeds\";\n}\n});\n\/*Heart a submission*\/\nlet theheart = document.getElementById(\"heartsvg\"); \/\/ assign the SVG class to a variable called theheart\nlet lsheart = localStorage.getItem(\"onheart\"); \/\/ access a key called onheart in LS, and assign it to a variable called lsheart\nlet heartmsg = document.getElementById(\"heartmessage\");\nconst enableheart = () => { \/\/ create a function to colour in the SVG when the SVG is clicked\ntheheart.classList.add(\"activeheart\"); \/\/ tell the function to add a class to the SVG that will add colour\nheartmsg.innerHTML = \"You liked this submission\";\nheartmsg.classList.add(\"addpinkcolor\");\nlocalStorage.setItem(\"onheart\", \"enabled\"); \/\/ activate LS with the key and a value, hereby called enabled\n};\nconst disableheart = () => { \/\/ create a function to remove colour from the SVG when the SVG is clicked\ntheheart.classList.remove(\"activeheart\"); \/\/ tell the function to remove the class from the SVG that added colour\nheartmsg.innerHTML = \"Like this submission\";\nheartmsg.classList.remove(\"addpinkcolor\");\nlocalStorage.setItem(\"onheart\", \"disabled\"); \/\/ activate LS with the same key but a new value, hereby called disabled\n};\nif(lsheart === \"enabled\"){ \/\/ if the LS key has a value of enabled then...\nenableheart(); \/\/ ...run the enableheart function, which adds the class to the SVG\n}\ntheheart.addEventListener(\"click\", function(){ \/\/ when the SVG is clicked...\nlsheart = localStorage.getItem(\"onheart\"); \/\/ ...I think the LS needs to run on itself\nif(lsheart === \"enabled\"){ \/\/ if the LS key has a value of enabled...\ndisableheart(); \/\/ ...run the function that changes the LS value to disabled\n} else { \/\/ otherwise...\nenableheart(); \/\/ ...run the function that changes the LS value to enabled\n}\n});\n<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Degree Show 2024 Tia Hewitt-Brown BA Art and Design Character design and illustrating the worlds that my characters inhabit is the core of my practice. A major reason as to why worldbuilding is an important aspect of my work is because it can tackle real-world socio-economic problems, like racism and misogyny; almost every character I &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.schoolofdesignleeds.com\/ds24\/tia-hewitt-brown\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Tia Hewitt-Brown&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-2805","post","type-post","status-publish","format-standard","hentry","category-ba-art-and-design","entry"],"_links":{"self":[{"href":"https:\/\/www.schoolofdesignleeds.com\/ds24\/wp-json\/wp\/v2\/posts\/2805","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.schoolofdesignleeds.com\/ds24\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.schoolofdesignleeds.com\/ds24\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.schoolofdesignleeds.com\/ds24\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.schoolofdesignleeds.com\/ds24\/wp-json\/wp\/v2\/comments?post=2805"}],"version-history":[{"count":1,"href":"https:\/\/www.schoolofdesignleeds.com\/ds24\/wp-json\/wp\/v2\/posts\/2805\/revisions"}],"predecessor-version":[{"id":2887,"href":"https:\/\/www.schoolofdesignleeds.com\/ds24\/wp-json\/wp\/v2\/posts\/2805\/revisions\/2887"}],"wp:attachment":[{"href":"https:\/\/www.schoolofdesignleeds.com\/ds24\/wp-json\/wp\/v2\/media?parent=2805"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.schoolofdesignleeds.com\/ds24\/wp-json\/wp\/v2\/categories?post=2805"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.schoolofdesignleeds.com\/ds24\/wp-json\/wp\/v2\/tags?post=2805"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}